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中所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)