var system = require(‘system‘); if (system.args.length === 1) { console.log(‘try to pass some args when invoking this script!‘); }else{ system.args.forEach(function(arg,i){ console.log(i + ‘:‘ + arg); }) } phantom.exit();
时间: 2024-10-28 23:48:48
var system = require(‘system‘); if (system.args.length === 1) { console.log(‘try to pass some args when invoking this script!‘); }else{ system.args.forEach(function(arg,i){ console.log(i + ‘:‘ + arg); }) } phantom.exit();