我正在做本教程https://www.youtube.com/watch?v=WwmUFTWEh6Y,我遇到了问题为什么@Href
不起作用。
@Href
我的目标应该指向Update ActionResult
中的PostsController
,但它不起作用,我也没有看到任何问题。我有一个PostsController,你可以在图片中看到,我在public ActionResult Update
中明显有一个PostsController
。
为什么会说path not found
?
在本教程结束时我可能没有留下任何头发了!
修改 在图片中,我强调了两件事,但我有点想到了另一件事。
更新:
public class PostsController : Controller { //UPDATE takes (id, title, body, datetime, tags) public ActionResult Update(int? id, string title, string body, DateTime dateTime, string tags) { ....... }