何度も何度も検索しましたが、希望はありません。そして、これは IE 10 のバグだと思い始めました。以下のコードは、Chrome、Firefox、IE 7 8 9 などで正常に機能したためです。
このエラーが発生しました
GetDataFromWebMethod(): {"Message":"Invalid web service call, missing value for parameter: \u0027recordID\u0027.","StackTrace":"
at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary`2 parameters)\r\n
at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams
(Object target, IDictionary`2 parameters)\r\n
at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData, IDictionary`2 rawParams)\r\n
at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}
次のようなパラメーターを使用して ASP.NET WebMethod を呼び出そうとしたとき:
var dataToSend = '{"recordID":"' + id + '"}';
var URLDataForm = 'FundsMain.aspx/Get';
oriEntity = GetDataFromWebMethod(URLDataForm, dataToSend);
このような機能で
function GetDataFromWebMethod(webMethodUrl, dataToSend) {
if (webMethodUrl == '' || webMethodUrl === undefined) return null;
var data;
$.ajax({
type: 'POST',
data: dataToSend,
contentType: "application/json; charset=utf-8",
dataType: "json",
url: webMethodUrl,
async: false,
cache: false,
success: function (responseTxt) {
data = $.parseJSON(responseTxt.d.ResponseData);
},
error: function (err) {
showMessageBox("error", "Error", "GetDataFromWebMethod(): " + err.responseText);
}
});
return data;
}
ウェブ方法:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static AjaxResponse Get(int recordID)
{
// remove for brevity
}
以下のデバッグデータを使用:
- in Firefox: dataToSend "{"recordID":"1625"}"
- in IE <10: dataToSend "{\"recordID\":\"1625\"}" String
- in Chrome: dataToSend:"{"recordID":"1625"}"
- in IE 10: dataToSend "{\"recordID\":\"1625\"}" String **(same as IE <10 !)**
誰でもこれについて何か考えがありますか?それとも私は何かを逃したと思いますか?お時間をいただきありがとうございます。