地獄大家。
我工作的一個ASP.NET Web API項目,我在這裏得到一個錯誤:
function LoadGraph(text) {
console.log(typeof(text));
$.ajax({
url: "/api/Graph/LoadGraph",
type: "POST",
//contentType: "application/javascript",
data: $(text).serialize(),
cache: false,
success: function (data) {
console.log(data);
}
})
}
的文本字符串,錯誤的是
Uncaught Error: Syntax error, unrecognized expression: <and here there is the value of the text varibale>
而且它發生在該行data: $(text).serialize(),
謝謝你的幫助。
你應該序列化一個輸入元素而不是它的值 –
'text'的值是什麼? –
@ArunPJ文本來自上傳文件,你想說我應該序列化? –
elpha01