个人博客地址
用https访问了http域名,微信内部浏览器报跨域问题;类似下图
解决方案:
在nginx配置文件对应的location中增加配置
add_header 'Access-Control-Allow-Origin' 'https://news.xionghaizhi.work';
add_header 'Access-Control-Allow-Headers' 'Origin, X-Requested-With, Content-Type, Accept';
参考博客园