Node.js:如何在url中添加变量作为输入

时间:2015-12-16 12:33:38

标签: javascript ajax node.js phantomjs

我想使用这个幻像代码但是使用node.js,但是我在node.js中找不到system.args [1]的等价物

-internal

1 个答案:

答案 0 :(得分:0)

如果您将脚本作为$ node script.js theargument

运行

你应该能够使用

获得它
// the first argument is node and 
//the second is the script name, none of them should be relevant
var args = process.argv.slice(2);
var sBlob = args[0];