querystring.escape = function(str) { str = encodeURIComponent(str) .replace(/\*/g,'%2A') .replace(/\(/g,'%28') .replace(/\)/g,'%29') .replace(/'/g,'%27'); return str; };
我唯一担心的是,如果我理解正确,这可能会改变其他模块的行为,这些模块将来可能还需要查询字符串(具有正常的转义函数). node.js文档说,模块只加载一次,原始实例返回到后续的require调用.有没有办法让我强制这个特殊的查询字符串实例是唯一的?
显然我可以编写一个在传统调用querystring.stringify之后进行替换的包装器,但我很好奇,因为标准节点模块确实有一个“全局”设置对我来说似乎很奇怪,除非实际上有某种方式毕竟需要一个独特的实例.
解决方法
Is there a way for me to force this particular instance of querystring to be unique?
并不是的.节点的module caching是每进程和based on the module’s filepath.
更改不会进入/从Child Processes或Clusters进行更改.因此,您可以通过其中一个使用自己的查询字符串来隔离脚本.
但是,在同一个过程中,Node没有提供绕过此功能的官方方法来检索单个模块的唯一实例.
this might change the behavior of other modules that might also require querystring (with its normal escape function) in the future.
好吧,如果URL编码的值有其他字符编码,则它仍然有效.只是通常他们不需要.
而且,我想,有可能影响对编码值寄予期望的模块.但是,这通常是一个奇怪的选择(例外情况是你自己的querystring.escape的单元测试).因此,只要它可以正确解码,它应该没问题.
querystring.escape = function (str) { /* ... */ }; // your function here var sample = "a(b*c)'d"; var encoded = querystring.escape(sample); console.log(encoded); // a%28b%2ac%29'd var decoded = querystring.unescape(encoded); console.log(decoded); // a(b*c)'d console.log(decoded === sample); // true
而且,覆盖querystring.escape
和querystring.unescape
的能力是设计的:
The escape function used by
querystring.stringify
,provided so that it could be overridden if necessary.