http://www.app.comとhttp://app.comの違いは何ですか
また、それが Ajax のクロスドメイン ポリシーにどのように影響するか
つまり、アプリに ajax リクエストを追加しました
$.ajax({
type: "POST",
url: "http://app.in/getToken",
contentType: "text/html",
success: function(msg) {
alert(msg);
}
});
Chromeでは機能しますが、Firefoxでは機能しません
問題は何ですか?
ありがとう