Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个控制器,它通过调用 web 服务为 iFrame 创建一个 url。我需要创建一个视图和一个模型,并将 iFrame 的这个 url 传递给视图。我怎么做?谢谢。
// Controller ViewBag.IframeUrl = theIframeUrl; View("ViewName"); //View <iframe src="@ViewBag.IframeUrl"></iframe>
这是最简单的方法。根据您的问题,您可能想要使用模型/视图模型。