0
初めてasaxページからajax呼び出しを使用します。asp.netのユーザーコントロールページからajax呼び出しを行うときに "SyntaxError:JSON.parse:unexpected character"エラーが発生しました
私は誤差関数で
エラーMSGを取得していますよりも、私がC#のページのデータを取得しますが、成功の機能を取得しようとしたときにしています正常に動作している「にSyntaxError:JSON.parse:予期しない文字」ここ
を私のコードです
var options = {
type: "POST",
url: "ChemistrieAddToCart.aspx",
data: data,
contentType: "application/json; charset=utf-8",
dataType: "json",
async: false,
success: function() {
alert("sucsess");
},
error: function (xhr, status, error) {
alert("failed" + xhr.responseText);
alert(error);
alert(status);
}
};
var returntext = $.ajax(options).responseText;
if (returntext = "added") {
alert("Matched");
window.location="shoppingcart.aspx"
}
else {
alert("not completed");
}
ありがとうございます。
データ?文字列を表示 –
– vik
これは私が渡している – vik