how Postman send requests? ajax, same origin policy

后端 未结 3 1106
自闭症患者
自闭症患者 2020-12-01 00:59

I have found this very useful Chrome extension called Postman. This is a very useful extension especially when you are into programming RESTful applications.

One thi

3条回答
  •  臣服心动
    2020-12-01 01:10

    Chrome packaged apps can have cross domain permissions. When you install Postman it promts you that this app will access any domain.

    By placing */* in permissions section of your manifest file, you can do this.

    Read more here: https://developer.chrome.com/extensions/xhr.html

提交回复
热议问题