我想使用.net核心API来使用url查询参数而不是路径参数。
控制器
[Route("api/[controller]/[action]")]
public class TranslateController : Controller
{
[HttpGet("{languageCode}")]
public IActionResult GetAllTranslations(string languageCode)
{
return languageCode;
}
}
startup.cs仅使用默认设置
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc()
.AddJsonOptions(jsonOptions =>
{
jsonOptions.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;
jsonOptions.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
jsonOptions.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;
});
services.AddLogging();
services.AddSingleton<IConfiguration>(Configuration);
services.AddSwaggerGen(c =>
{
c.SingleApiVersion(new Info
{
Version = "v1",
Title = "Translate API",
Description = "bla bla bla description",
TermsOfService = "bla bla bla terms of service"
});
});
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
app.UseMvc();
app.UseSwagger();
app.UseSwaggerUi();
}
我想将我的GetAllTranslations更改为接受查询参数而不是路径参数但是当我将邮递员查询更改为
时http://localhost:42677/api/Translate/GetAllTranslations?languageCode=en
我会得到错误404未找到,所以显然我的控制器路径设置不正确,但我无法找到如何做到这一点......有什么想法吗?
我尝试删除[HttpGet(&#34; {languageCode}&#34;)]属性,但我一直得到null参数而不是值。
答案 0 :(得分:4)
这就是你要找的东西
public IActionResult GetAllTranslations([FromQuery]string languageCode)
答案 1 :(得分:0)
@jcmontx的答案有效,但它没有解释为什么需要显式设置参数bindind。我仍不确定是否以及为何强制执行, 但有一个原因是,如果未明确设置绑定参数,则会打开API,使其按照预期的方式使用,这不是一个非常安全的良好实践。