gpt4 book ai didi

c#-4.0 - 如何将现有 View 附加到 Controller 操作?

转载 作者:行者123 更新时间:2023-12-02 19:13:48 24 4
gpt4 key购买 nike

如何将现有 View 附加到操作?我的意思是,我已经将这个 View 附加到一个操作,但我想要附加到第二个操作。

示例:我有一个名为 Index 的操作和一个名称相同的 View ,附加到它,右键单击,添加 View ...,但现在,如何附加到第二个 View ?假设一个Action叫Index2,如何实现呢?

代码如下:

//this Action has Index View attached
public ActionResult Index(int? EntryId)
{
Entry entry = Entry.GetNext(EntryId);

return View(entry);
}

//I want this view Attached to the Index view...
[HttpPost]
public ActionResult Rewind(Entry entry)//...so the model will not be null
{
//Code here

return View(entry);
}

我用谷歌搜索了它,但找不到正确的答案......这可能吗?

最佳答案

您无法将操作“附加”到 View ,但您可以使用 Controller.View 方法定义您希望操作方法返回的 View

public ActionResult MyView() {
return View(); //this will return MyView.cshtml
}
public ActionResult TestJsonContent() {
return View("anotherView");
}

http://msdn.microsoft.com/en-us/library/dd460331%28v=vs.98%29.aspx

关于c#-4.0 - 如何将现有 View 附加到 Controller 操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14626582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com