从棱角分明的前端到asp.net内核3.1后端的路由



这是我的后端.csproj。我正在做一个前端spa,以角度连接到我的后端内存数据库。我可以从我的后端应用程序的URL连接到我的数据库,如图所示。此外,我可以用这个标题发出邮递员请求并获得邮递员的成功回复。。。到目前为止还不错。在我的前端有一个问题。我有我的前端角服务包和我在邮差中使用的url。在我的组件中,我调用这个方法来连接到我的服务。不知怎么的,我拿不到";行程";当我在邮递员那里请求得到的时候。我几乎80%确信错误在后端,因为我可以在其他后端应用程序中获得请求。所以我要把我的后端代码放在这里。

我的程序.cs

public class Program
{
public static void Main(string[] args)
{
var host = CreateHostBuilder(args).Build();
using (var scope = host.Services.CreateScope())
using (var context = scope.ServiceProvider.GetService<AppDbContext>())
{
context.Database.EnsureCreated();
}
host.Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
}

launchSettings.json

我的启动.cs

public class Startup
{
public IConfiguration Configuration { get; }
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public void ConfigureServices(IServiceCollection services)
{
services.AddMemoryCache();

services.AddControllers().ConfigureApiBehaviorOptions(options =>
{

});
services.AddDbContext<AppDbContext>(options =>
{
options.UseInMemoryDatabase(Configuration.GetConnectionString("memory"));
});

services.AddScoped<ITripRepository, TripRepository>();
services.AddScoped<ITripService, TripService>();
services.AddScoped<IUnitOfWork, UnitOfWork>();
services.AddAutoMapper(typeof(Startup));

}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}

app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}

}

我的get控制器:

[HttpGet]
[ProducesResponseType(typeof(List<TripDTO>), 200)]
public async Task<IEnumerable<TripDTO>> GetAllAsync()
{
var trips = await _tripService.ListAsync();
var dtos = _mapper.Map<IEnumerable<Trip>, IEnumerable<TripDTO>>(trips);
return dtos;
}

编辑:当我做前端控制台时,我得到的错误。我试图得到的列表中的日志是在这里输入图像描述

第2版:AppDbContext后端

public class AppDbContext : DbContext
{
public DbSet<Trip> Trips { get; set; }

public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);

builder.Entity<Trip>().ToTable("Trips");
builder.Entity<Trip>().HasKey(p => p.Id);
builder.Entity<Trip>().Property(p => p.Id).IsRequired().ValueGeneratedOnAdd();
builder.Entity<Trip>().Property(p => p.Key).IsRequired().HasMaxLength(10);
builder.Entity<Trip>().Property(p => p.IsEmpty).IsRequired();
builder.Entity<Trip>().Property(p => p.Orientation).IsRequired();
builder.Entity<Trip>().Property(p => p.LineKey).IsRequired().HasMaxLength(10);
builder.Entity<Trip>().Property(p => p.PathKey).IsRequired().HasMaxLength(10);
builder.Entity<Trip>().Property(p => p.IsGenerated).IsRequired();
builder.Entity<Trip>().Property(p => p.PassingTimes)
.HasConversion(
v => JsonConvert.SerializeObject(v),
v => JsonConvert.DeserializeObject<List<PassingTime>>(v));
builder.Entity<Trip>().HasData
(
new Trip { Id = 100,Key="Trip:344",IsEmpty=false,Orientation=false,LineKey="Line:444",PathKey="Path:344",IsGenerated=true }, // Id set manually due to in-memory provider
new Trip { Id = 1200,Key="Trip:1344",IsEmpty=false,Orientation=false,LineKey="Line:2444",PathKey="Path:3424",IsGenerated=true }
);

}
}

}

编辑3:

HTML 
<!DOCTYPE html>
<html>
<body>
<h4>List of Trips</h4>
<div class="list row">
<div class="col-md-6">
<ul class="list-group">
<li class="list-group-item" *ngFor="let trip of trips; let i = index" [class.active]="i == currentIndex" (click)="setActiveTrip(trip, i)">
{{ trip.key }}
</li>
</ul>
</div>
<div *ngIf="!currentTrip">
<br />
<p>Please click on a trip to see the details...</p>
</div>
<div class="col-md-6">
<div *ngIf="currentTrip">
<h4>Selected Trip Details</h4>
<div>
<div>
<label><strong>Key:</strong></label> {{ currentTrip.key }}
</div>

</div>
</div>
</div>
</div>
</body>
</html>

组件.cs

import { Component, OnInit } from '@angular/core';
import { TripService } from 'src/app/masterdataviagem/services/trip-service';
@Component({
selector: 'app-tripslist',
templateUrl: './tripslist.component.html',
styleUrls: ['./tripslist.component.css']
})
export class TripslistComponent implements OnInit {
trips: any;
currentTrip: any = null;
currentIndex = -1;
key = '';
tripsList:any;
constructor(private tripService:TripService) { this.tripsList=this.tripService.getAll()}
ngOnInit(): void {
this.retrieveTrips();


}
retrieveTrips() {
this.trips= this.tripService.getAll().subscribe(
data => {
this.trips = data;
console.log(data);
},
error => {
console.log(error);
});
console.log(this.trips);
}
refreshList() {
this.retrieveTrips();
this.currentTrip = null;
this.currentIndex = -1;
}
setActiveTrip(trip: any, index: number) {
this.currentTrip = trip;
this.currentIndex = index;
}

}

也许你必须在后端启用CORS(我猜是浏览器控制台末尾的"未知错误",这是你的控制台.log(错误((。

您可以尝试使用此chrome扩展来测试:https://chrome.google.com/webstore/detail/allow-cors-access-control/lhobafahddgcelffkeicbaginigeejlf?hl=en.

如果您的后端响应显示为启用了扩展,那么您必须启用CORS:

https://learn.microsoft.com/en-us/aspnet/core/security/cors?view=aspnetcore-3.1#ecors

最新更新