http://www.test.com/ http://www.test.com/index.html 否 同源(协议、域名、端口号相同) http://www.test.com/ https://www.test.com/index.html 跨域 协议不同(http/https) http://www.test.com/ http://www.baidu.com/ 跨域 主域名不同(test/baidu) http://www.test.com/ http://blog.tes...
今天做thinkphp和uniapp的通信的时候出现这个错误,很明显是服务端跨域设置的问题 修改服务端网站配置,我用的是nginx 配置如下: # 允许 所有头部 所有域 所有方法 add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Headers' '*'; add_header 'Access-Control-Allow-Methods' '*...
http://www.test.com/ http://www.test.com/index.html 否 同源(协议、域名、端口号相同) http://www.test.com/ https://www.test.com/index.html 跨域 协议不同(http/https) http://www.test.com/ http://www.baidu.com/ 跨域 主域名不同(test/baidu) http://www.test.com/ http://blog.tes...
今天做thinkphp和uniapp的通信的时候出现这个错误,很明显是服务端跨域设置的问题 修改服务端网站配置,我用的是nginx 配置如下: # 允许 所有头部 所有域 所有方法 add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Headers' '*'; add_header 'Access-Control-Allow-Methods' '*...
今天做thinkphp和uniapp的通信的时候出现这个错误,很明显是服务端跨域设置的问题 修改服务端网站配置,我用的是nginx 配置如下: # 允许 所有头部 所有域 所有方法 add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Headers' '*'; ...