1

当使用 Windows 时,Napi 和我运行npm i它编译并且工作得很好。在 linux 上执行相同操作时,napi-inl.h 出现此错误

project/node_modules/node-addon-api/napi-inl.h: In instantiation of ‘static Napi::Function Napi::Function::New(napi_env, Callable, const char*, void*) [with Callable = Napi::Promise (*)(Napi::CallbackInfo&); napi_env = napi_env__*]’:
../test.cc:10:50:   required from here
project/node_modules/node-addon-api/napi-inl.h:1985:22: error: cannot bind non-const lvalue reference of type ‘Napi::CallbackInfo&’ to an rvalue of type ‘Napi::CallbackInfo’
 1985 |   typedef decltype(cb(CallbackInfo(nullptr, nullptr))) ReturnType;
      |                    ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
project/node_modules/node-addon-api/napi-inl.h:1985:22: error: cannot bind non-const lvalue reference of type ‘Napi::CallbackInfo&’ to an rvalue of type ‘Napi::CallbackInfo’
project/node_modules/node-addon-api/napi-inl.h:1996:5: error: type ‘<type error>’ argument given to ‘delete’, expected pointer
 1996 |     delete callbackData;
      |     ^~~~~~

test.cc 看起来像这样

#include <napi.h>
#include "processData.h"


// This is were the Node module function name is assigned
// when imported getData() will be the function to call
// It calls Process()
Napi::Object Init(Napi::Env env, Napi::Object exports) {
  exports.Set(Napi::String::New(env, "getData"),
              Napi::Function::New(env, Process));
  return exports;
}

NODE_API_MODULE(NODE_GYP_MODULE_NAME, Init)

我不知道这是我的问题还是 NAPI 的问题

4

2 回答 2

1

发现问题是一个简单的错误,涉及 Process.cc 中的函数声明缺少const关键字

老办法:

Napi::Promise Process(Napi::CallbackInfo& info)

新的方法:

Napi::Promise Process(const Napi::CallbackInfo& info)
于 2021-06-14T18:22:37.030 回答
0

这是因为npm i在 Windows 和 Linux 上都不同。引用另一个问题的答案:

是的,例如,如果您(或您的依赖项)使用本机 node.js 插件,可能会有差异,这些插件由例如 node-gyp 构建并包含本机二进制代码。在package.json. package.json描述可以在这里找到:https ://docs.npmjs.com/files/package.json

于 2021-05-17T23:05:57.087 回答