thinkphp 在接口開發或者接入三方時解決跨域

估計大家都會了,就不解釋了,直接上代碼把restful

解決方案:

header('Access-Control-Allow-Origin: *');   //*表明容許全部的網址請求當前接口,固然你也能夠把*改爲具體的網址,例如www.baidu.com
header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept");
header('Access-Control-Allow-Methods: GET, POST, PUT'); //容許接收的方法,通常是get post,用restful的話 就是get  post put  delete 固然你用什麼方法添加到這裏就好了
相關文章
相關標籤/搜索