我试图用 AJAX调用一个MVC控制器动作传递一些参数.我有时在这个应用程序中这样做,它工作正常.我不知道为什么只有这一个不起作用. function excluirDetalhe(button, tab) { var index = $(button).clos
function excluirDetalhe(button, tab) { var index = $(button).closest('tr').index(); var myTable = document.getElementById(tab); var id = myTable.rows[index].cells[0].innerHTML.trim(); $('#' + tab + ' tr:eq(' + index + ')').remove(); $.ajax({ traditional: true, url: "entidades/gravaCookie", type: 'post', data: { id: id, detalhe: "E" }, error: function (jqXHR, textStatus, errorThrown) { alert(errorThrown); } }); }
这是我的控制器方法:
public void gravaCookie(string id, string detalhe) { string key = "een_id"; if (detalhe.Equals("E")) key = "een_id"; if (detalhe.Equals("C")) key = "eco_id"; if (detalhe.Equals("B")) key = "eba_id"; cookie.Values.Add(key, id); }
只是提醒我,我正在做的其他Ajax调用,但只有这一个特别是没有工作.有人有任何想法吗?
始终使用Url.Action或Url.RouteUrl
html帮助程序方法来构建操作方法的URL.无论您当前的页面/路径如何,它都会正确构建网址.
假设您的js代码位于剃刀视图中,您可以直接使用Url.Action方法并将其分配给您的js变量.
url: "@Url.Action("gravaCookie","entidades")",
应该假设你有这样的动作方法
[HttpPost] public ActionResult gravaCookie(string id,string detalhe) { // to do : Return something }
如果你的javascript在一个单独的javascript文件中,你可以使用上面的帮助器方法在你的剃刀视图中构建url,并将其保存在外部js文件代码可以访问的变量中.这样做时务必确保使用javascript命名空间,以避免全局javascript变量可能出现的问题.
@section Scripts { <script> var myApp = myApp || {}; myApp.Urls = myApp.Urls || {}; myApp.Urls.baseUrl = '@Url.Content("~")'; myApp.Urls.gravaCookieUrl = '@Url.Action("gravaCookie","entidades")'; </script> <script src="~/Scripts/PageSpecificExternalJsFile.js"></script> }
在您的PageSpecificExternalJsFile.js文件中,您可以像读取它一样
var urlToGrava= myApp.Urls.gravaCookieUrl // Or With the base url, you may safely add the remaining url route. var urlToGrava2= myApp.Urls.baseUrl+"entidades/gravaCookie"; // Use urlToGrava now
编辑
如果您只关心网站的根/网址,则可以使用/作为网址的第一个字符.
var urlToGrava2= "/entidades/gravaCookie";