var url = '@Url.Action("UploadFilesToDropBox", "Home")';
$.ajax({
type: "POST",
url: url,
data: postData,
success: function (result) {
if (result == "Success")
{
AfterCreationOfFiles(selected,SelectedFormat);
}
}, dataType: "json",
traditional: true
});
我使用上面的函数调用 ActionResult ,在localhost上我的函数运行顺利。但是当我在服务器上运行它时,它会给我以下错误:
无法找到资源。
我不小心添加了WebApi,可能是导致错误?