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 语法传入数据的 js 函数。我尝试了以下失败。
onclick="Follow(@model => model.Id); return false;"
您只能将 lambda 表达式传递给需要表达式的方法。喜欢Html.EditorFor。试试@this.Model.Id吧。我还建议添加一个检查是否this.Model不为空。
Html.EditorFor
@this.Model.Id
this.Model