我正在编写一些代码,但似乎无法理解为什么这总是失败。我曾尝试调试它,但是正在引用的 asp 页面不会遇到断点。(提示可能它没有获取页面??)。对于数据:我在发帖之前就有了它,试图查看它是否会执行 JSON.stringify({variables}) 以查看它是否也能正常工作,但它没有
我在这里做错了什么吗?
$.ajax({
type: 'POST',
url: 'AutoComplete.asmx/getWebFormDesignFieldContents',
data: {
'fe_name': "*",
'count': 200, //this might need to be adjusted slightly. I may want to make it more OR less.
'also_search_fe_desc': true,
'opts': opts
},
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (result) {
//success
$("div.modal").replaceWith($(result));
$("div.modal").fadeIn();
},
error: function (result) {
//error
//alert("Error: "+result.statusText);
$("div.overlay").fadeOut();
}
});
在 ASP 的服务器端部分,我有:
public String getWebFormDesignFieldContents(String fe_name, int count, bool also_search_fe_desc, String opts)
{
String retValue = "";
...
return retValue;
}