Chrome拡張でajax通信時にクロスドメインのエラーの対処
806 ワード
【コメントで質問OKです】
Chrome拡張で下記の様にajaxでgetを実施すると
『CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.』
が発生
$.ajax({type: 'GET',url: TGVC.sru + "/api/room/event_and_support?room_id=" + roomID, async: false})
.done(function(re) {
console.log(re);
})
.fail(function() {
});
クロスドメインで怒られたら(XMLHttpRequest)
上記を参照しマニフェストのpermissionsにURLを追加
"permissions": ["tabs","https://www.showroom-live.com/"],
Author And Source
この問題について(Chrome拡張でajax通信時にクロスドメインのエラーの対処), 我々は、より多くの情報をここで見つけました https://qiita.com/Stchan/items/58ed51f267889d7ce15c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .