我想对这个进行 URL 编码:
SELECT name FROM user WHERE uid = me()
我必须为此下载一个模块吗?我已经有了请求模块。
您可以使用 JavaScript 的encodeURIComponent:
encodeURIComponent
encodeURIComponent('select * from table where i()')
给予
'select%20*%20from%20table%20where%20i()'