1
我知道這個問題可能被標記爲與此one重複,但我的問題是我需要獲取一些引用,而不是調用控制器操作的視圖的URL。我需要確定基於與代碼視圖爲模型的屬性,如獲取在MVC4調用控制器的視圖的類型
public ActionResult Create(message message)
{
switch (View.type)
{
case("MSG"):
message.type = 0; // 0 for messages
case("Reminder"):
message.type = 1; // 1 for reminders
}
當您從視圖中調用標識符時,您必須傳入標識符。 –
@SamLeach目前我在視圖中設置'Message.Type',但只是想知道是否有任何內置的mvc可以處理這個問題。 –