執行dotnet-new selfhost sstest 創建項目,然後打開解決方案 修改ssTest.ServiceModel中的Hello.cs,在HellopResponse中添加時間屬性,然後修改MyServices中的代碼 運行程式,打開Postman查看返回結果 可以看到Json中dat ...
執行dotnet-new selfhost sstest 創建項目,然後打開解決方案
修改ssTest.ServiceModel中的Hello.cs,在HellopResponse中添加時間屬性,然後修改MyServices中的代碼
運行程式,打開Postman查看返回結果
可以看到Json中date屬性返回的是 "date": "/Date(1555810731732+0800)/",直接導致前段js無法識別該欄位,該如何解決?
在Startup中加入以下代碼,任何時間都轉換為ISO8601字元串
public class Startup { // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { JsConfig<DateTime>.SerializeFn = time => new DateTime(time.Ticks, DateTimeKind.Local).ToString("o"); JsConfig<DateTime?>.SerializeFn = time => time != null ? new DateTime(time.Value.Ticks, DateTimeKind.Local).ToString("o") : null; JsConfig.DateHandler = DateHandler.ISO8601; app.UseServiceStack(new AppHost()); app.Run(context => { context.Response.Redirect("/metadata"); return Task.FromResult(0); }); } }
打開Postman再次運行,查看結果
前段js再次取得該字元串時間,就可以正確的識別時間類型欄位了。