Why does the post request of axios in vue automatically bring the local ip with url?

Why is it that when you use vue to send a post request, the local debug address is automatically taken before the url? The request code is written as follows:

t.$axios.post("http//api.open.test.ai/readingcutupload", {
    file: "123333"
}).then(res => {
    console.log(res);
})

then check the console and find that this string is automatically brought in front

clipboard.png

Mar.26,2021

url address is missing a colon


you may have written baseUrl .

Menu