新來的MVC所以學習(在一個失意的一種方式尋找簡單的東西,以前需要在web表單5分鐘已經變得過於複雜)MVC鏈接到的意見
所以我成立了VS2015的解決方案它附帶先決條件帳戶部分。
我還設置了數據庫中的表和建立不同於實體(生產一些CRUD
)
這樣我就可以登錄並(在AccountController
return View("AccountHome")
)
讓我AccountHome視圖從我AccountHome
頁面,我可以用一個單獨的控制器
(@Html.ActionLink("Add Foods", "Create", "fad_userFoods", new { id = ViewBag.userID }, new { @class = "btn btn-default" })
)
我在這裏做一些形式錄入和數據成功添加到數據庫導航到另一個看法,但這裏是我的問題,李ES。數據錄入後,我想回去AccountHome
視圖
所以在我的fad_userFoodsControler
我有這樣的代碼
(return RedirectToAction("AccountHome","Account")
)
- 說資源不能被發現!
在我AccountController
,我有以下代碼:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult AccountHome()
{
return View();
}
在我AccountViewModels
我有這樣的代碼:
public class AccountHomeViewModel
{
public string Email { get; set; }
}
最後,在我的AccountHome.cshtml
頁我在上面這個聲明(@model FiveADayMVC2.Models.AccountHomeViewModel
)
我哪裏錯了?看了很多帖子,他們都這樣做。我知道該視圖存在,因爲我可以從登錄中獲得該視圖。然而,如果我手動輸入網址(即我的網址後跟/Account/AccountHome
),它不會被發現?
這將是我的缺乏理解,但在哪裏?
預先感謝任何指針
你可以通過縮進代碼來清理你的問題嗎? –