<i id='aPY3m'><tr id='aPY3m'><dt id='aPY3m'><q id='aPY3m'><span id='aPY3m'><b id='aPY3m'><form id='aPY3m'><ins id='aPY3m'></ins><ul id='aPY3m'></ul><sub id='aPY3m'></sub></form><legend id='aPY3m'></legend><bdo id='aPY3m'><pre id='aPY3m'><center id='aPY3m'></center></pre></bdo></b><th id='aPY3m'></th></span></q></dt></tr></i><div id='aPY3m'><tfoot id='aPY3m'></tfoot><dl id='aPY3m'><fieldset id='aPY3m'></fieldset></dl></div>
<legend id='aPY3m'><style id='aPY3m'><dir id='aPY3m'><q id='aPY3m'></q></dir></style></legend>
  • <tfoot id='aPY3m'></tfoot>

    <small id='aPY3m'></small><noframes id='aPY3m'>

    • <bdo id='aPY3m'></bdo><ul id='aPY3m'></ul>

        '无法从程序集'Microsoft.AspNetCore.Mvc.Formatters.Json 加载类

        #39;Could not load type #39;Microsoft.AspNetCore.Mvc.MvcJsonOptions#39; from assembly #39;Microsoft.AspNetCore.Mvc.Formatters.Json, Version=3.0.0.0(无法从程序集Microsoft.AspNetCore.Mvc.Formatters.Json 加载类型Microsoft.AspNetCore.Mvc.MvcJso

        • <tfoot id='CDIWv'></tfoot>
          <legend id='CDIWv'><style id='CDIWv'><dir id='CDIWv'><q id='CDIWv'></q></dir></style></legend>
            <tbody id='CDIWv'></tbody>

          <small id='CDIWv'></small><noframes id='CDIWv'>

                <bdo id='CDIWv'></bdo><ul id='CDIWv'></ul>
                  <i id='CDIWv'><tr id='CDIWv'><dt id='CDIWv'><q id='CDIWv'><span id='CDIWv'><b id='CDIWv'><form id='CDIWv'><ins id='CDIWv'></ins><ul id='CDIWv'></ul><sub id='CDIWv'></sub></form><legend id='CDIWv'></legend><bdo id='CDIWv'><pre id='CDIWv'><center id='CDIWv'></center></pre></bdo></b><th id='CDIWv'></th></span></q></dt></tr></i><div id='CDIWv'><tfoot id='CDIWv'></tfoot><dl id='CDIWv'><fieldset id='CDIWv'></fieldset></dl></div>
                  本文介绍了'无法从程序集'Microsoft.AspNetCore.Mvc.Formatters.Json 加载类型'Microsoft.AspNetCore.Mvc.MvcJsonOptions',版本= 3.0.0.0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我在我的 netcoreapp3.0 Web 应用程序中使用 netstandard2.1 库.在 Startup 中添加我的服务时,我收到以下错误:

                  I'm using netstandard2.1 library in my netcoreapp3.0 web application. When adding my service in Startup, I'm getting the below error:

                  '无法加载类型'Microsoft.AspNetCore.Mvc.MvcJsonOptions'程序集 'Microsoft.AspNetCore.Mvc.Formatters.Json, Version=3.0.0.0

                  'Could not load type 'Microsoft.AspNetCore.Mvc.MvcJsonOptions' from assembly 'Microsoft.AspNetCore.Mvc.Formatters.Json, Version=3.0.0.0

                  我还在我的类库中使用 Microsoft.AspNetCore.Mvc 2.2.0 包中的一些功能.

                  I'm also using some features from Microsoft.AspNetCore.Mvc 2.2.0 package in my class library.

                  这是我的库 .csproj,

                  <Project Sdk="Microsoft.NET.Sdk">
                  
                    <PropertyGroup>
                      <TargetFramework>netstandard2.1</TargetFramework>
                    </PropertyGroup>
                  
                    <ItemGroup>
                      <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
                    </ItemGroup>
                  
                  </Project>
                  

                  这是我的库中的 ServiceExtensions 类,

                  Here is my ServiceExtensions class from my library,

                  public static class ServiceExtensions
                  {
                      public static IMvcBuilder AddMyLibrary(this IMvcBuilder builder)
                      {
                          builder.Services.TryAddSingleton<IHttpContextAccessor, HttpContextAccessor>();
                          builder.AddJsonOptions(options =>
                          {
                              options.SerializerSettings.ContractResolver = new DefaultContractResolver();
                          });
                          builder.Services.ConfigureOptions<ConfigureLibraryOptions>();
                  
                          return builder;
                      }
                  }
                  

                  这是我的 ConfigureLibraryOptions 类,

                  public class ConfigureLibraryOptions : IConfigureOptions<MvcOptions>
                  {
                      public void Configure(MvcOptions options)
                      {
                          options.ModelBinderProviders.Insert(0, new CustomBinderProvider());
                      }
                  }
                  

                  这是 Startup 中的 ConfigureServices

                  services.AddControllersWithViews().AddMyLibrary();
                  

                  请帮助我为什么会收到此错误并帮助解决此问题?

                  Please help on why I'm getting this error and assist on how to solve this?

                  推荐答案

                  你得到这个错误的原因是 MvcJsonOptions 在 .NET Core 3.0 中被移除了;您可以在此处阅读更多有关重大更改的信息.

                  The reason why you're getting the error is because MvcJsonOptions was removed in .NET Core 3.0; you can read more about the breaking changes here.

                  这篇关于'无法从程序集'Microsoft.AspNetCore.Mvc.Formatters.Json 加载类型'Microsoft.AspNetCore.Mvc.MvcJsonOptions',版本= 3.0.0.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)

                  • <i id='ZWOKu'><tr id='ZWOKu'><dt id='ZWOKu'><q id='ZWOKu'><span id='ZWOKu'><b id='ZWOKu'><form id='ZWOKu'><ins id='ZWOKu'></ins><ul id='ZWOKu'></ul><sub id='ZWOKu'></sub></form><legend id='ZWOKu'></legend><bdo id='ZWOKu'><pre id='ZWOKu'><center id='ZWOKu'></center></pre></bdo></b><th id='ZWOKu'></th></span></q></dt></tr></i><div id='ZWOKu'><tfoot id='ZWOKu'></tfoot><dl id='ZWOKu'><fieldset id='ZWOKu'></fieldset></dl></div>

                      <tfoot id='ZWOKu'></tfoot>
                        • <bdo id='ZWOKu'></bdo><ul id='ZWOKu'></ul>
                              <tbody id='ZWOKu'></tbody>
                            <legend id='ZWOKu'><style id='ZWOKu'><dir id='ZWOKu'><q id='ZWOKu'></q></dir></style></legend>

                            <small id='ZWOKu'></small><noframes id='ZWOKu'>