.net core Json設定後臺確定大小寫
阿新 • • 發佈:2019-01-23
問題來源於我寫了一個介面,介面的返回型別是JsonResult,但是對接之後反應返回結果的首字母全小寫了,後來查了寫資料返現.net core 對json 的處理預設使用駝峰式,需要在ConfigureServices 方法中全域性這隻先不適用駝峰式處理
/// <summary> /// This method gets called by the runtime. Use this method to add services to the container. /// </summary> /// <param name="services"></param> public void ConfigureServices(IServiceCollection services) {