URL的queryString有特定的字符集。对value最好进行encodeURIComponent处理。const url = `/user/addressbook/getTextSearch?countries=${encodeURIComponent(xxx)}&value=${encodeURIComponent(xxx)}&container=${encodeURIComponent(xxx)}`
URL的queryString有特定的字符集。对value最好进行
encodeURIComponent
处理。