Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

ajax get请求中,无法通过query发送含有水平制表符的参数值,水平制表符会被忽略?

image.png
image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

URL的queryString有特定的字符集。对value最好进行encodeURIComponent处理。

const url = `/user/addressbook/getTextSearch?countries=${encodeURIComponent(xxx)}&value=${encodeURIComponent(xxx)}&container=${encodeURIComponent(xxx)}`

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...