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.
我有 Razor 和 Nancy 一起工作,但不知道如何让视图看到模型。
我正在使用此代码渲染模型(t模型实例在哪里)。
t
return View[ "views/addshortcut.cshtml", t ];
我怎样才能让剃刀看到t?
模型在那里,只需开始使用它。如果您在谈论智能感知,那么您可以在 razor 中使用 @inherit 语句......类似
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<YourNameSpace.YourModel>