現在のバージョンの MS Bing Translator から新しい Azure バージョンに変換しようとしています。
新しいドキュメントの説明に従ってアクセス トークンを作成しましたが、Microsoft が提供する次の例 (Azure 用) は正しく動作します。
function translate() {
var from = "en", to = "es", text = "hello world";
var s = document.createElement("script");
s.src = "http://api.microsofttranslator.com/V2/Ajax.svc/Translate" +
"?appId=" + settings.appID +
"&from=" + encodeURIComponent(from) +
"&to=" + encodeURIComponent(to) +
"&text=" + encodeURIComponent(text) +
"&oncomplete=mycallback";
document.body.appendChild(s);
}
function mycallback(response) {
alert(response);
}
上記のコードを jQuery 呼び出しに変換したいと思います。
以前のバージョンからの同様の jQuery ajax 呼び出しを変更しましたが、問題parseerror-jQuery17206897480448242277_1343343577741 was not called
が発生しました。
function jqueryTranslate() {
var p = {};
p.appid = settings.appID;
p.to = "es";
p.from = "en";
p.text = "Goodbye Cruel World";
p.contentType = 'text/html';
$.ajax({
url: 'http://api.microsofttranslator.com/V2/Ajax.svc/Translate',
data: p,
dataType: 'jsonp',
jsonp: 'oncomplete',
complete: function (request, status) {
},
success: function (result, status) {
alert(result);
},
error: function (a, b, c) {
alert(b + '-' + c);
}
});
}
何がうまくいかないのかを理解していただければ幸いです。TIA にお時間をいただきます。