我正在寻找一种运行外部 javascript frm v8 shell 的方法。
要在 v8 shell 中运行 javascript,整个脚本应该在一行中。否则 v8 shell 会在 javascript 中给出语法错误。
我可以做些什么来从 v8 shell 运行一些大型 javascript 代码?
我已经成功地从控制台运行了 javascripts。它工作正常。当涉及到运行一些大型 javascript 代码时,v8 给出了 sysntax 错误,但是当我删除新行时它起作用了。我只想知道有没有办法从外部运行 javascript文件。
function strAdd1()
{
var start = new Date().valueOf();
var str = "This is the string that will be tested. it is a long one with numbers 1234567890";
for(var i=0;i<100000;i++)
{
str += "This is the string that will be tested. it is a long one with numbers 1234567890";
}
return new Date().valueOf() - start;
}