1
しばらくの間node.jsを使用しますが、今はアドオンを書く必要がありますが、私はC++のnewbです。node.jsアドオンチェックの方法引数タイプ
in node.js関数にオプションの引数を渡して型をチェックできます。
function hello(arg, options, callback){
if(!callback){
if(typeof options === 'function'){
callback = options;
options = {};
}
}
console.log(typeof arg);
}
しかし、アドオンで。
Handle<Value> hello(const Arguments &args) {
HandleScope scope;
printf("%d\n", args.Length());
// how to check type of args[i]
return String::New("world");
}
非常に良い、ありがとう –