赞
踩
目录
今天在开发一个项目中发现vue前端调用百 度 o c r 识别接口出现了跨域问题!
百度api 的接口: https://aip.baidubce.com/oauth/2.0/token
接下来我们看看如何解决
我们用ngxin配置,具体如下:
server {
listen 80;
server_name 域名或者ip;
location / {
root /tools/sdk/dist;
index index.html;
try_files $uri $uri/ /index.html;
}
location ~ ^/(baidu)/.* {
rewrite ^.+baidu/?(.*)$ /$1 break;
include uwsgi_params;
proxy_pass https://aip.baidubce.com;
}
}
这样就可以完美解决跨域问题了
欢迎大家点击下方卡片,关注《coder练习生》
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。