彼ら、
クロスドメイン ajax リクエスト ( http://dict.qq.com/dict?q=language )を送信したいのですが、サーバーは JSON( JSONPではない) レスポンスしか提供しません。リクエストを行う方法はありますか?
これが私がやったことです:
$.ajax({
url:"http://dict.qq.com/dict?q=language",
dataType:"jsonp",
type:'get',
processData:false,
crossDomain:true,
contentType:"application/json",
success:result
});
function result(data){console.log(data);}
応答は次のとおりです。
Uncaught SyntaxError: Unexpected token :
ありがとう !