我在 Visual Studio 中构建了节点,然后通过在 Visual Studio 项目中设置适当的路径,成功地在 .node 扩展名中编译了这段代码。
#include <node.h>
namespace demo {
using v8::FunctionCallbackInfo;
using v8::Isolate;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;
void Method(const FunctionCallbackInfo<Value>& args) {
Isolate* isolate = args.GetIsolate();
args.GetReturnValue().Set(String::NewFromUtf8(isolate, "world"));
}
void init(Local<Object> exports) {
NODE_SET_METHOD(exports, "hello", Method);
}
NODE_MODULE(addon, init)
}
但是当我通过这段代码调用这个模块时,
var addon = require('./nodeExt');
console.log(addon.hello());
我收到上述错误。请提出您的建议。