我有一个jQuery.post()
语法问题。
我有控制器ExampleController.cs
,有一个动作:
public ActionResult TestPost(Guid fileId) { //do something }
和视图Example.cshtml
,在这里我尝试加载这个动作:
function foo(fileGuid) {
$.post("Example/TestPost?fileId=" + fileGuid, function () {
alert("success");
});
}
但是没有警报,我认为这种语法有问题。谁能帮我吗。谢谢。