我在跨域調用AJAX的REST服務時遇到Syntax error: invalid label
的問題。我的迴應是{ "d": 12000 }
它顯示了「d」雙引號的錯誤。語法錯誤:無效標籤
我的代碼是這樣的:
$.ajax({
type: 'post',
url: 'http://localhost/test.svc/getnumber',
dataType: "jsonp",
crossDomain: true,
contentType: "application/jsonp",
});
我怎樣才能解決這個問題呢?
url:'http:localhost // test.svc/getnumber – user2000423
我想你必須在url後添加一個逗號:'http://localhost//test.svc/getnumber' –