我使用esriRequest使用以下代码调用c#action方法,但每当我调用此代码时,它将进入错误处理程序,并出现404错误。请帮我摆脱这个问题。
requestParam = esriRequest({
url: "/Home/GetData",
headers: {
"X-Requested-With": null,
"Content-Type": "application/json"
},
content: {
param: "reqParam"
},
handleAs: "json",
useProxy: true,
usePost: false
});
requestParam .then(lang.hitch(this, function(response) {
deferred.resolve(response);
}), lang.hitch(this, function(error) {
deferred.reject(error);
}));
return deferred.promise;
答案 0 :(得分:0)
而不是home我需要在没有Controller关键字的情况下给出我的控制器类名。如果我的控制器名称“TestController”,则只提供 Test / GetData 。大家好。