我想对这个进行 URL 编码:
SELECT name FROM user WHERE uid = me()
我必须为此下载module吗?我已经有了请求module。
我想对这个进行 URL 编码:
SELECT name FROM user WHERE uid = me()
我必须为此下载module吗?我已经有了请求module。
您可以使用 JavaScript 的encodeURIComponent
:
encodeURIComponent('select * from table where i()')
给予
'select%20*%20from%20table%20where%20i()'
内置modulequerystring
正是您要找的:
var querystring = require("querystring");
var result = querystring.stringify({query: "SELECT name FROM user WHERE uid = me()"});
console.log(result);
#prints 'query=SELECT%20name%20FROM%20user%20WHERE%20uid%20%3D%20me()'
使用 的escape
功能querystring
。它生成一个 URL 安全字符串。
var escaped_str = require('querystring').escape('Photo on 30-11-12 at 8.09 AM #2.jpg');
console.log(escaped_str);
// prints 'Photo%20on%2030-11-12%20at%208.09%20AM%20%232.jpg'
请注意,URI 编码适用于查询部分,不适用于域。域使用 punycode 进行编码。您需要像URI.js这样的库来在 URI 和 IRI(国际化资源标识符)之间进行转换。
如果您打算稍后将该字符串用作查询字符串,则这是正确的:
> encodeURIComponent("http://examplé.org/rosé?rosé=rosé")
'http%3A%2F%2Fexampl%C3%A9.org%2Fros%C3%A9%3Fros%C3%A9%3Dros%C3%A9'
如果你不想ASCII字符喜欢做/
,:
并?
进行转义,使用encodeURI
来代替:
> encodeURI("http://examplé.org/rosé?rosé=rosé")
'http://exampl%C3%A9.org/ros%C3%A9?ros%C3%A9=ros%C3%A9'
但是,对于其他用例,您可能需要uri-js:
> var URI = require("uri-js");
undefined
> URI.serialize(URI.parse("http://examplé.org/rosé?rosé=rosé"))
'http://xn--exampl-gva.org/ros%C3%A9?ros%C3%A9=ros%C3%A9'
encodeURIComponent(string) 会这样做:
encodeURIComponent("Robert'); DROP TABLE Students;--")
//>> "Robert')%3B%20DROP%20TABLE%20Students%3B--"
虽然在查询字符串中传递 SQL 可能不是一个好的计划,