从 JQuery 调用控制器操作时出错

发布于 2024-10-17 00:13:23 字数 450 浏览 1 评论 0原文

我的母版页中有此调用:

$.ajax({
                    type: "POST",
                    url: "<%= Url.Action("CreateTermSheet", "Indications") %>",
                    data: GetJSONForID(),
                    success: function(data) {
                        alert('Success!');
                    }
                });

但是当我去加载页面时,它不会呈现,并且出现此编译错误:

CS0103:当前上下文中不存在名称“Url”

有什么问题?我在应用程序的其他地方这样做完全没问题。

I have this call in my master page:

$.ajax({
                    type: "POST",
                    url: "<%= Url.Action("CreateTermSheet", "Indications") %>",
                    data: GetJSONForID(),
                    success: function(data) {
                        alert('Success!');
                    }
                });

But when I go to load the page it doesn't render and I get this compilation error:

CS0103: The name 'Url' does not exist in the current context

What's wrong? I do this other places in my app completely fine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最佳男配角 2024-10-24 00:13:23

此错误意味着您的视图未引用 System.Web.Mvc。它应该由 Visual Studio 自动添加。检查 /Views Web.config (Project Directory/Views/Web.config) 中的引用

<controls>
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls>

This error means here that your views did not reference System.Web.Mvc. It should be automatically added by Visual Studio. Check the reference in your Views Web.config (Project Directory/Views/Web.config) in <system.web>/<pages>

<controls>
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls>
听,心雨的声音 2024-10-24 00:13:23

确保您的母版页是 MVC 母版页,即它继承自 System.Web.Mvc.ViewMasterPage 而不是来自 System.Web.UI.MasterPage

<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>

然后您将拥有 Url 属性及其各自的 操作方法。

Make sure that your master page is an MVC master page i.e. it inherits from System.Web.Mvc.ViewMasterPage and not from System.Web.UI.MasterPage:

<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>

Then you will have the Url property inside and its respective Action method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文