私はいくつかのコードに取り組んでいましたが、なぜこれが常に失敗するのか理解できないようです。私はそれをデバッグしようとしましたが、aspページが参照しているのはブレークポイントにヒットしません。(おそらく、ページをフェッチしていないということですか??)。データの場合:パートIは、投稿の直前に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;
}