版本: v1.8.4
当 url 的 query 参数中有 http://127.0.0.1/ 并且省略请求前缀的时候, 就会导致请求无法发送出去
// 当 url 的 query 参数中有 http://127.0.0.1/ 并且省略请求前缀的时候, 就会导致请求无法发送出去
// baseUrl = `http://127.0.0.1:9000`
// yes
this.$u.put(`http://127.0.0.1:9000/get?avatarUrl=http://127.0.0.1:9000&tag=1`)
// err
this.$u.put(`/get?avatarUrl=http://127.0.0.1:9000&tag=2`)
// yes
this.$u.put(`/get&tag=3`)