c# – RoutePrefixAttribute在ASP.NET 5中

c# – RoutePrefixAttribute在ASP.NET 5中,第1张

概述我在ASP.NET 5中开始了一个新的Web API 2.0项目.我尝试创建自定义的RoutePrefixAttribute类,但是我收到这个错误 The type or namespace name 'RoutePrefixAttribute' could not be found (are you missing a using directive or an assembly refere 我在ASP.NET 5中开始了一个新的Web API 2.0项目.我尝试创建自定义的RoutePrefixAttribute类,但是我收到这个错误
The type or namespace name 'RoutePrefixAttribute' Could not be found (are you missing a using directive or an assembly reference?)   {Projectname}.DNX Core 5.0

我应该使用其他类吗?

解决方法 MVC中确实没有RoutePrefixAttribute 6.在控制器上应用[Route]属性现在将作为路由前缀:
[Route("API/[controller]/[action]")]public class ProductsController : Controller{    [Route("{ID:int}")]    public JsonResult Details(int ID)    {        // ...    }}

这将匹配API /产品/细节/ 42.

也见Filip W. this blogpost.

总结

以上是内存溢出为你收集整理的c# – RoutePrefixAttribute在ASP.NET 5中全部内容,希望文章能够帮你解决c# – RoutePrefixAttribute在ASP.NET 5中所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1260454.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存