4

我正在使用此https://github.com/nodejs/node-addon-api/blob/master/doc/bigint.md文档作为从 c++ 返回 bigint 的参考,但出现以下错误:

error: ‘BigInt’ in namespace ‘Napi’ does not name a type
     Napi::BigInt HelloWrapped(const Napi::CallbackInfo& info);

这是我的源代码:

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

std::int64_t bigintexample::hello() {
    return 1234;
}

Napi::BigInt bigintexample::HelloWrapped(const Napi::CallbackInfo& info) {
    Napi::Env env = info.Env();
    Napi::BigInt returnValue = Napi::BigInt::New(env, bigintexample::hello());

    return returnValue;
}


Napi::Object InitAll(Napi::Env env, Napi::Object exports) {
    exports.Set("hello", Napi::Function::New(env, bigintexample::HelloWrapped));
    return exports;
}


NODE_API_MODULE(NODE_GYP_MODULE_NAME, InitAll)

在 napi.h 中,BigInt 功能仅在 NAPI_VERSION 定义大于 2147483646 时可用。当我将 NAPI_VERSION 定义设置为高于 2147483646 的数字时,我收到以下错误消息

/home/user/bigint-napi/node_modules/node-addon-api/napi-inl.h:573:24: error: ‘napi_create_bigint_int64’ was not declared in this scope
   napi_status status = napi_create_bigint_int64(env, val, &value);
4

1 回答 1

1

通过添加定义解决它:NAPI_EXPERIMENTAL 并删除 NAPI_VERSION 定义

于 2019-02-27T05:10:53.910 回答