URL编码NodeJ中的字符串

时间:2016-02-18 03:08:10

标签: php node.js

在PHP中我们有:

echo '<a href="mycgi?foo=', urlencode($userinput), '">';

urlencode();

的NodeJs版本是什么?

1 个答案:

答案 0 :(得分:2)

你需要吗? urlendcode

在这种情况下,可能与nodejs无关, 在客户端只使用javacript函数encodeURIComponent进行编码

例如:

&#13;
&#13;
var apiUrl: string = 'mycgi?foo=';
apiUrl += encodeURIComponent(userInput) 
&#13;
&#13;
&#13;