Hello V8程序员和节点gyp'ers。我使用OS X 10.12.6
,Node v6.11.1
,npm v3.10.10
,nan v2.6.2
作为XCode的一部分运行gcc
,$ > gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 8.1.0 (clang-802.0.42)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
并使用此版本输出:
npm install
请帮助我了解如何在自定义程序包安装的node-gyp rebuild
或> node-gyp rebuild
CXX(target) Release/obj.target/cellcrypt/src/cellcrypt.o
CC(target) Release/obj.target/cellcrypt/src/decode.o
CXX(target) Release/obj.target/cellcrypt/src/DecryptionWrapper.o
../src/DecryptionWrapper.cpp:55:44: warning: 'NewInstance' is deprecated [-Wdeprecated-declarations]
v8::Local<v8::Object> instance = cons->NewInstance();
^
/Users/sjcbsolo/.node-gyp/6.11.1/include/node/v8.h:3276:52: note: 'NewInstance' has been explicitly marked deprecated here
V8_DEPRECATED("Use maybe version", Local<Object> NewInstance() const);
^
1 warning generated.
CC(target) Release/obj.target/cellcrypt/src/Encryption.o
SOLINK_MODULE(target) Release/cellcrypt.node
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
过程中正确使用NewInstance并消除警告?
info.GetReturnValue().Set(cons->NewInstance(argc, argv));
info.GetReturnValue().Set(Nan::NewInstance(cons, argc, argv).ToLocalChecked());
如果我不需要,我不想看到那些警告。我在github上找到了一个打开的票证,详细说明了对另一个插件包的修复,要求调用NewInstance的方式:
Nan::NewInstance()
在不违反速度和效率的情况下实施if(strcasecmp($name,$this->input->post("name")) === 0)
的最佳方法是什么?
答案 0 :(得分:5)
错误消息本身为您提供答案的简短形式:“使用可能的版本”。它试图告诉你,NewInstance
的重载版本会返回MaybeLocal
(而不是Local
),这就是你应该使用的内容。
背景是大多数操作都可能失败,通常是在抛出异常时。旧的V8 API使得嵌入器相对难以确保它们在所有相关位置检查异常;因此引入了基于MaybeLocal
返回类型的新API。每当你得到MaybeLocal
时,你应该检查它是否真的包含一个值。如果您只是使用.ToLocalChecked
(没有先手动检查),这意味着如果出现故障,您只愿意崩溃(如果您能保证什么都不会失败,那就没问题)。从好的方面来说,这并不比你的代码显然一直在做的更糟糕; - )