Stack Overflow Question Routing

后端 未结 3 1910
北海茫月
北海茫月 2020-12-11 09:01

If you review a SO question URL you will see that an ID and a \"SLUG\" are passed to the Questions controller: https://stackoverflow.com/questions/676934/what-do-you-need-to

3条回答
  •  眼角桃花
    2020-12-11 09:13

    The slug is there for search engines to catalog the resource/page. It's not used in the route at all as part of the arguments passed to the database to retrieve the requested post.

    The ID is the important part.

    So in your code, the SlugConstraint is not required and the value of the slug argument is ignored in the Details action.

    This behavior is what SO do and what you can do, if u wish to copy SO.

提交回复
热议问题