各位大佬:
我自己做的一个博客前端页面现在遇到一个问题:
使用 vue :src 绑定 img 地址,html 源码里地址正确,为什么 chrome 请求的时候会重组地址? 比如 html 中为 src="https://api.xx.com/files/" 但从 chrome network 中看请求的地址变成了https://本站 url/api.xxx.com/files/
html 没有设置 base
,api.xx.com 使用 ajax 请求正常。
1
morethansean 2017-12-29 12:09:43 +08:00
你确定标签里 src 是 "https://api.xx.com/files/" ?
根据你说的现象,src 应该漏写了 "https://" |
2
hduwillsky OP @morethansean 没有漏写, 博客地址 https://mymid.me
|
3
hduwillsky OP @morethansean 知道问题了,https:// 被后端 clean 掉了一个 /
|