我想单独使用V8 javascript引擎,例如我将按照here所述的命令行运行它:
$> ./v8-shell -e 'print("10*10 = " + 10*10)'
我希望javascript执行一些http请求,最好使用jQuery API,但XMLHttpRequest也可以。
V8中是否有内置方法来执行此操作?如果没有实现访问者/ cpp扩展的话,有没有办法实现呢?
答案 0 :(得分:6)
V8中是否有内置方法来执行此操作?
不是直接在V8中,但NodeJS添加了网络和文件系统功能,among other features。
从文档中窃取一个例子:
var options = {
host: 'www.google.com',
port: 80,
path: '/upload',
method: 'POST'
};
var req = http.request(options, function(res) {
// callback invoked when response is received
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
// 'data' event is fired whenever a chunk of the response arrives
console.log('BODY: ' + chunk);
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
// write data to request body
req.write('data\n');
req.write('data\n');
req.end();
答案 1 :(得分:3)
这是一个很好的例子:当你使用Node的vm.createContext()
方法时,基本上直接绑定到V8功能,这就是全局上下文的含义:
Errors: [Error, EvalError, RangeError, ReferenceError,
SyntaxError, TypeError, URIError],
Types: [Array, Boolean, Date, Function, Map, Number,
Object, Proxy, RegExp, Set, String, WeakMap], //--harmony: [Map, Proxy, Set, WeakMap]
Primitives: [Infinity, NaN, undefined],
Dicts: [Math, JSON],
Methods: [decodeURI, decodeURIComponent, encodeURI, encodeURIComponent,
escape, eval, isFinite, isNaN, parseFloat, parseInt, unescape]
它甚至没有设置/ clearTimeout,设置/ clearInternal(不是本机javascript函数)。 JavaScript作为一种语言比大多数人意识到的要紧密。它总是存在于主机环境中,可以在顶部添加更多内容。
答案 2 :(得分:2)
V8只是一个javascript引擎,它没有浏览器主机方法,如警报或主机对象,如XMLHttpRequest。