我有一个类似于ABC/23/54的搜索字符串作为字符串传递给Axios,但Axios显示AxiosError:请求失败,状态代码为404。就像它改变了路径,所以没有请求到达数据库。我该如何解决这个问题?
ABC/23/54
const key = "ABC/23/54" Axios.get( `http://127.0.0.1:5000/items/search/${key}.then(...))
7xllpg7q1#
可以尝试使用encodeURIComponent函数
Axios.get( `http://127.0.0.1:5000/items/search/${encodeURIComponent(key)}.then(...))
1条答案
按热度按时间7xllpg7q1#
可以尝试使用encodeURIComponent函数