目录
介绍
背景
使用代码
I)服务器端
a)先决条件
b)设置项目
c)设置数据库
d)使用AutoMapper
e)使用Swagger
f)运行API
II)客户端
a)先决条件
b)设置项目
c)实现服务
d)实现组件
III)运行项目
参考
ASP.NET Core 2.0&Angular 4:通过本教程,您将学习如何从头开始构建用于车辆管理的Web应用程序
- 下载演示dotnetcore - 811 KB
- 下载演示Angular - 92.3 KB
介绍
本文的主要目的是发现有关Angular4和.NET CORE Framework的更多功能,例如:
- 使用WebApi v2创建RestFul服务器
- 使用Entity框架进行.NET Core代码优先(code first)方法
- AutoMapper
- 使用.NET Core依赖注入
- 在.NET Core项目中使用Swagger API
- 使用Angular创建单页应用程序
- 在Angular中创建组件,服务和类
- Angular路由系统
- Angular表单验证
- 使用主题模式在组件之间进行通信
- 使用Angular-datatables
为了更好地理解本文,建议您具备以下方面的良好知识:
- 用C#编程
- SQL语言
- 实体框架
- Visual Studio代码
在开始实施WebApi服务项目之前,您将在下面找到所有有用的链接:
- Visual Studio代码(链接)
- DotNetCore 2.0.0(链接)
- NET核心命令行工具(链接)
- AutoMapper(链接)
- Swagger Api(链接)
使用Visual Studio代码集成终端,我们运行以下命令行来创建一个新的DotNet Core MVC项目,其中demobackend文件夹中包含单独的身份验证系统。
mkdir demobackend
dotnet new mvc -au Individual -f netcoreapp2.0
这是项目结构:
要仅将WebApi用于身份系统,您应该在项目中引入一些更改:
替换启动程序:
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")))
services.AddIdentity()
.AddEntityFrameworkStores()
.AddDefaultTokenProviders();
// Add application services.
services.AddMvc();
}
// This method gets called by the runtime.
// Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
// Enable middleware to serve generated Swagger as a JSON endpoint.
app.UseMvc();
}
除AccountController类外,删除所有存在于控制器文件夹中的controller类
用下面的代码替换AccountController,使其仅具有诸如login、logout和signup等仅返回http状态代码(200,400)的有用操作。
namespace demobackend.Controllers
{
[Authorize]
[Route("[controller]/[action]")]
public class AccountController : Controller
{
private readonly UserManager _userManager;
private readonly SignInManager _signInManager;
private readonly ILogger _logger;
public AccountController(
UserManager userManager,
SignInManager signInManager,
ILogger logger)
{
_userManager = userManager;
_signInManager = signInManager;
_logger = logger;
}
[TempData]
public string ErrorMessage { get; set; }
[HttpPost]
[AllowAnonymous]
public async Task Login([FromBody]LoginViewModel model)
{
if (ModelState.IsValid)
{
// This doesn't count login failures towards account lockout
// To enable password failures to trigger account lockout, set lockoutOnFailure: true
var result = await _signInManager.PasswordSignInAsync
(model.Email, model.Password, model.RememberMe, lockoutOnFailure: false);
if (result.Succeeded)
{
var msg = "User logged in.";
return Ok(msg);
}
}
// If we got this far, something failed, redisplay form
return BadRequest("Fail to login with this account");
}
[HttpPost]
[AllowAnonymous]
public async Task Register([FromBody] RegisterViewModel model)
{
var msg = "Bad Request";
if (ModelState.IsValid)
{
var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
var result = await _userManager.CreateAsync(user, model.Password);
if (result.Succeeded)
{
_logger.LogInformation("User created a new account with password.");
var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);
//await _signInManager.SignInAsync(user, isPersistent: false);
_logger.LogInformation("User created a new account with password.");
msg = "User created a new account with password.";
return Ok(msg);
}
}
// If we got this far, something failed, redisplay form
return BadRequest(msg);
}
[HttpGet]
[AllowAnonymous]
public async Task Logout()
{
await _signInManager.SignOutAsync();
// await HttpContext.SignOutAsync("MyCookieAuthenticationScheme");
_logger.LogInformation("User logged out.");
var msg = "User logged out.";
return Ok(msg);
}
}
c)设置数据库
首先,您应该使用SSMS创建一个命名为demoangulardatabase 的空数据库。
接下来,您应该修改appsettings.json中的默认连接字符串:
"ConnectionStrings": {
"DefaultConnection": "Server=(LocalDb)\\MSSQLLocalDB;Database=demoangulardatabase;
Trusted_Connection=True;MultipleActiveResultSets=true"
},
对于此示例,您只需要Car实体,为此,您需要在Data文件夹中创建Car类:
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace demobackend.Data
{
public class Car
{
[Key]
public int Id {get; set;}
[StringLength(50),Required]
public string Name {get; set;}
[StringLength(50),Required]
public string Mark {get; set;}
[StringLength(50),Required]
public string Model {get; set;}
[Required]
public DateTime Registered { get; set; }
}
}
要更新数据库架构,我们将使用Entity Framework Core迁移工具:
- 添加新的迁移脚本:dotnet ef migrations add initialMigration -c ApplicationDbContext -v
- 更新数据库架构:dotnet ef database update -c ApplicationDbContext -v
最后,当您刷新数据库服务器时,您将获得以下结果:
目的是创建从ViewModel对象到Entities对象的映射,反之亦然:
首先,在Model文件夹中创建CarViewModel类:
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace demobackend.Models
{
public class CarViewModel
{
public int Id {get; set;}
[StringLength(50),Required]
public string Name {get; set;}
[StringLength(50),Required]
public string Mark {get; set;}
[StringLength(50),Required]
public string Model {get; set;}
[Required]
public DateTime Registered { get; set; }
}
}
其次,通过AutoMapper Profile Configuration文件配置映射:在AutoMapperProfile文件夹中创建此文件:
using demobackend.Data;
using demobackend.Models;
using System.Collections.Generic;
using AutoMapper;
using System;
namespace demobackend.AutoMapperProfile
{
public class AutoMapperProfileConfiguration : Profile
{
public AutoMapperProfileConfiguration()
: this("MyProfile")
{
}
protected AutoMapperProfileConfiguration(string profileName)
: base(profileName)
{
CreateMap();
CreateMap();
}
}
}
最后,在startup.cs中,在ConfigureServices方法中添加以下行以创建和启动IMapper服务,其将注入控制器中:
var config = new AutoMapper.MapperConfiguration(cfg =>
{
cfg.AddProfile(new AutoMapperProfileConfiguration());
});
var mapper = config.CreateMapper();
services.AddSingleton(mapper);
使用ASP.NET Core Web API 2.0创建Car Management API
创建一个名为ManageCarController的新控制器,它将包含每个CRUD方法的端点:
- Get():返回包含所有可用汽车的HttpResponseMessage
- Get(int id):返回由id参数标识的包含特定car对象的HttpResponseMessage。
- Post([FromBody] CarViewModel _car):它将创建一个新车,如果检查操作,其将返回一个Http ok状态代码(http 200),否则它将返回(http 400)
- Put(int id, [FromBody] CarViewModel value):它将修改特定的汽车(由id参数标识)。如果car不存在,它将返回Http未找到的代码,如果更新操作有效则返回http 200状态代码,否则返回Http错误请求。
- Delete(int id):它将删除特定的car(由id参数标识),如果操作有效,将返回Http ok状态代码(http 200)。
using System;
using System.Collections.Generic;
using System.Linq;
using AutoMapper;
using demobackend.Data;
using demobackend.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Http;
namespace demobackend.Controllers
{
[Authorize]
[Route("api/[controller]")]
public class ManageCarController : Controller
{
private IMapper _mapper;
private ApplicationDbContext dbContext;
public ManageCarController(IMapper mapper, ApplicationDbContext context)
{
this._mapper = mapper;
this.dbContext = context;
}
// GET api/values
[HttpGet]
public IEnumerable Get()
{
IEnumerable list =
this._mapper.Map(this.dbContext.cars.AsEnumerable());
return list;
}
// GET api/values/5
[HttpGet("{id}")]
public IActionResult Get(int id)
{
var _car = this._mapper.Map(this.dbContext.cars.Find(id));
return Ok(_car);
}
// POST api/values
[HttpPost]
public IActionResult Post([FromBody] CarViewModel _car)
{
if (ModelState.IsValid)
{
_car.Registered = DateTime.Now;
var newcar = this._mapper.Map(_car);
this.dbContext.cars.Add(newcar);
this.dbContext.SaveChanges();
return Ok();
}else{
return BadRequest();
}
}
// PUT api/values/5
[HttpPut("{id}")]
public IActionResult Put(int id, [FromBody] CarViewModel value)
{
if (ModelState.IsValid)
{
var existingCar = this.dbContext.cars.Find(id);
if(existingCar == null){
return NotFound();
}else{
existingCar.Name = value.Name;
existingCar.Mark = value.Mark;
existingCar.Model = value.Model;
this.dbContext.cars.Update(existingCar);
this.dbContext.SaveChanges();
return Ok();
}
}else{
return BadRequest();
}
}
// DELETE api/values/5
[HttpDelete("{id}")]
public IActionResult Delete(int id)
{
this.dbContext.cars.Remove(this.dbContext.cars.Find(id));
this.dbContext.SaveChanges();
return Ok();
}
}
}
e)使用Swagger
要测试ManageCarWebApi中的每个操作,我们将使用swaggerAPI:
首先,我们应该安装它:
dotnet add package Swashbuckle.AspNetCore --version 1.0.0
接下来,在startup.cs中:
- 在ConfigureServices部分中添加以下行:
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new Info { Title = "My API", Version = "v1" });
});
- 在Configure部分中添加以下行:
app.UseSwagger();
// Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.), specifying the Swagger JSON endpoint.
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
})
f)运行API
要运行项目,请执行以下命令行:
dotnet run
打开浏览器并编写以下URL:
http://localhost:5000/swagger/
最后,您将获得Swagger用于测试API的UI界面:
以下是如何使用Account和ManageCar服务的一些示例:
测试订阅服务
结果:
测试认证服务
结果:
测试新车的创建
结果:
测试获取所有可用汽车
在开始实施客户端项目之前,您将在下面找到所有有用的链接:
- 安装Visual Studio代码(链接)
- 安装nodejs + npm(链接)
- 设置开发环境(链接)
- 安装Angular-Datatables(链接)
- 安装Angular2-busy(链接)
- 角度表单验证(链接)
- 主题模式(链接)
要创建新的Angular项目,请在工作区文件夹中执行以下命令行:
首先,安装Angular CLI工具:
npm install -g @angular/cli
其次,使用模板生成一个新的Angular项目:
ng new demo
最后,运行应用程序:
cd demo
ng serve --open
c)实现服务
在开始实现服务之前,我们应该首先声明模型类:
- ICar:用于将json数据反序列化为ICar 对象。
export interface ICar {
id: number,
name: string,
mark: string,
model: string,
registered : Date
}
- Message:用于保存有关抛出通知的信息:
- Type:这是一种警报类型,它可以作为价值:' Error'或' Success'
- Text:这是一个警报说明
export class Message {
constructor(public type : string, public text: string) {
}
}
- User:用于将json数据反序列化为user 对象。
export class User {
email : string = "";
password : string = "";
rememberMe : boolean = false;
}
loginService
包含管理与服务器的会话的方法:
- loginSubject:它实现Subject模式。用于跟踪会话状态,当用户创建新会话时,他将收到通知(loginSubject.next(1))以在页面顶部显示电子邮件地址,否则当他退出时,电子邮件将消失。
- login(currentUser : User):POST向Account/Login服务发送http请求以尝试与服务器的新连接。作为参数,它将传递一个User对象。
- logout():POST向Account/ Logout服务发送http请求以尝试结束当前会话。
import { Injectable } from '@angular/core';
import { Http, Headers, RequestOptions, Response, RequestMethod } from '@angular/http';
import {User} from '../models/user';
import 'rxjs/add/operator/toPromise';
import { Subject } from 'rxjs';
@Injectable()
export class LoginService {
public loginSubject = new Subject();
_baseUrl : string = "http://localhost:5000/Account";
options = new RequestOptions({
withCredentials : true
});
constructor(private http: Http) { }
public login(currentUser : User) {
let _currentUser = JSON.stringify(currentUser);
return this.http.post(this._baseUrl + '/Login', currentUser, this.options)
.toPromise()
.catch(this.handleError);
}
public logout(){
return this.http.get( this._baseUrl + '/Logout', this.options)
.toPromise()
.catch(this.handleError);
}
private handleError(error: any): Promise {
return Promise.reject(error.message || error);
}
}
CarService
包含将cars数据管理到数据库的方法。
- getCars():Get向/api/ManageCar服务发送http请求以获取所有可用的汽车
- getCar(id : number):Get向/api/ManageCar服务发送http请求以获取特定的汽车(由id参数标识)
- addNewCar(_car : ICar):使用_car对象作为参数向/api/ManageCar服务发送POST http请求,以在CAR表中创建新行。
- updateCar(_car : ICar):使用_car 对象作为参数向/api/ManageCar服务发送PUT http请求以更新现有汽车(标识为id)。
- deleteCar(id : number):向/api/ManageCar服务发送Delete http请求以删除特定的car(由 标识id)。
import { Injectable } from '@angular/core';
import { Observable, Subject } from 'rxjs/Rx';
import { Http, Headers, RequestOptions, Response, RequestMethod } from '@angular/http';
import { ICar } from './../models/ICar';
@Injectable()
export class CarService {
carsList : ICar[];
_baseUrl : string = "http://localhost:5000/api/";
_getCarsUrl : string = "ManageCar";
options = new RequestOptions({
withCredentials : true
});
constructor(private http: Http) {
}
public getCars() {
return this.http.get(this._baseUrl + this._getCarsUrl, this.options)
.toPromise();
}
public getCar(id : number) {
return this.http.get(this._baseUrl + this._getCarsUrl + "/"+ id, this.options)
.toPromise();
}
public addNewCar(_car : ICar){
return this.http.post(this._baseUrl + this._getCarsUrl, _car, this.options)
.toPromise();
}
public updateCar(_car : ICar){
return this.http.put(this._baseUrl + this._getCarsUrl + "/"+
_car.id, _car, this.options)
.toPromise();
}
public deleteCar(id : number){
return this.http.delete(this._baseUrl + this._getCarsUrl + "/"+ id, this.options)
.toPromise();
}
}
CanActivateService
其目的是通过检查用户是否被授权或者不通过该链接阅读更多关于这个服务的信息,来确保某些路由访问。
它从CanActivate接口实现canActivate方法。
import { Injectable } from '@angular/core';
import { Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot }
from '@angular/router';
@Injectable()
export class CanActivateService implements CanActivate {
constructor(private router: Router) { }
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
if (localStorage.getItem('loggedUser')) {
return true;
}else{
// not logged in so redirect to login page with the return url
this.router.navigate(['/login'], { queryParams: { returnUrl: state.url }});
return false;
}
}
}
NotifService
它实现了通知系统,它将用于在页面抛出警报对话框中显示成功和错误消息。
此服务实现Subject模式以捕获观察者的通知,以在页面上显示或隐藏消息。
import { Message } from './../models/Message';
import { Injectable } from '@angular/core';
import { Subject, Observable} from 'rxjs/Rx';
import { Router, NavigationStart, Event} from '@angular/router';
@Injectable()
export class NotifService {
subject = new Subject();
constructor(private router: Router) {
router.events.subscribe( event =>
{
if(event instanceof NavigationStart) {
this.subject.next();
}
});
}
success(message: string) {
this.subject.next(new Message('alert-success', message));
}
error(message: string) {
this.subject.next(new Message('alert-danger', message));
}
getMessage(): Observable {
return this.subject.asObservable();
}
}
d)实现组件
登录组件
LoginComponent.ts
- login():它将通过model对象传递name和password,从LoginService调用login方法。
在成功操作的情况下,它将与服务器创建新会话并使用路由器服务导航到列表页面。否则,它将通过notifService调用错误方法显示错误消息。
import { Headers } from '@angular/http';
import { Component, NgModule, OnInit } from '@angular/core';
import { FormBuilder, Validators } from '@angular/forms';
import { Router, ActivatedRoute } from '@angular/router';
import { User } from '../../models/user';
import { LoginService } from './../../services/login-service.service';
import { NotifService } from './../../services/notif-service.service';
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.css']
})
export class LoginComponent implements OnInit {
EMAIL_REGEXP = "^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?
(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$";
model : User;
loading = false;
message = "";
busy: Promise;
constructor(
private router: Router,
private notifService : NotifService,
private loginService : LoginService
) {
this.model = new User();
}
ngOnInit() {
localStorage.removeItem('loggedUser');
this.loading = false;
this.loginService.logout().then(resp => {
this.loginService.loginSubject.next(1);
});
}
ngDestroy()
{
}
login() {
//clean notifications message on page
this.notifService.subject.next();
this.loading = true;
this.busy = this.loginService.login(this.model).then(resp => {
this.loading = false;
localStorage.setItem('loggedUser', this.model.email);
this.loginService.loginSubject.next(1);
this.router.navigate(["/list"]);
}).catch(exp => {
this.notifService.error(exp._body);
this.loading = false;
}) ;
}
}
Login.component.html
此页面提供登录界面,供用户输入其凭据(电子邮件和密码)以打开与服务器的新会话并可访问应用程序。
Please Login
E-Mail Address
Username is required
Password
Password is required
Remember me
Login
列表组件
List.component.ts
- init():通过配置paginType和pageLength属性初始化datatable对象。然后,它将通过调用CarService中的getCars方法以加载可用的cars 。如果引发异常,则通过调用NofifService中的error方法在页面顶部显示错误消息。
- searchCar():它按id过滤显示的汽车。当用户从下拉菜单中选择汽车名称时调用它。
- deleteCar(id : number):它从数据库中删除特定项(由参数id标识)并从视图中删除它。此方法将调用CarService中的deleteCar操作。如果引发异常,则通过调用NofifService中的error方法在页面顶部显示错误消息。
import { NotifService } from './../../services/notif-service.service';
import { Component, NgModule , OnInit } from '@angular/core';
import { CarService } from '../../services/car-service.service';
import { Subscription } from 'rxjs/Subscription';
import { ICar } from './../../models/ICar';
import { Subject } from 'rxjs/Rx';
import { RouterLink, Event } from '@angular/router';
@Component({
selector: 'app-list',
templateUrl: './list.component.html',
styleUrls: ['./list.component.css']
})
export class ListComponent implements OnInit {
listCars : any = [];
filtredCars : any = [];
carName : string = "";
selectedItem : number;
dtTrigger = new Subject();
dtOptions: DataTables.Settings = {};
constructor(private _carService : CarService, private notifService : NotifService ) {
this.init();
}
private init()
{
this.dtOptions = {
pagingType: 'full_numbers',
pageLength: 10
};
this.selectedItem = -1;
this._carService.getCars() .then( response => {
this.listCars = response.json() as ICar[];
this.filtredCars = this.listCars.slice(0);
// Calling the DT trigger to manually render the table
this.dtTrigger.next();
}).catch((resp) => {
console.log(resp);
this.notifService.error("Server Exception was raised");
});
}
public searchCar ()
{
if(this.selectedItem == -1)
{
this.filtredCars = this.listCars.slice(0);
}else
{
this.filtredCars = this.listCars.filter(
car => car.id == this.selectedItem );
}
}
public deleteCar(id : number)
{
this._carService.deleteCar(id).then( response => {
this.filtredCars = this.filtredCars.filter(
(item : ICar) => {
return (item.id != id)
})
this.notifService.success("Delete was well done");
// this.dtTrigger.next();
}).catch((resp) => {
this.notifService.error("Server Exception was raised");
});
}
ngOnInit()
{
}
}
List.component.html
此页面显示所有可用的详细汽车,并允许用户使用下拉过滤器或使用datatable组件的本机搜索框按车辆ID进行过滤。
通过datatable,您可以删除,更新特定汽车或添加新汽车。
要更新或创建汽车,您将导航到专用页面。
Filter by car id :
choose option
{{item.name}}
+ Add new car
ID
Name
Mark
Model
Registred Date
{{car.id}}
{{car.name}}
{{car.mark}}
{{car.model}}
{{car.registered | date }}
关注
打赏
最近更新
- 深拷贝和浅拷贝的区别(重点)
- 【Vue】走进Vue框架世界
- 【云服务器】项目部署—搭建网站—vue电商后台管理系统
- 【React介绍】 一文带你深入React
- 【React】React组件实例的三大属性之state,props,refs(你学废了吗)
- 【脚手架VueCLI】从零开始,创建一个VUE项目
- 【React】深入理解React组件生命周期----图文详解(含代码)
- 【React】DOM的Diffing算法是什么?以及DOM中key的作用----经典面试题
- 【React】1_使用React脚手架创建项目步骤--------详解(含项目结构说明)
- 【React】2_如何使用react脚手架写一个简单的页面?


微信扫码登录