嗨,我是 C++ 中的菜鸟,试图修改现有的本机节点模块。
我正在尝试在模块内添加 couts 以打印我认为对我有用的信息。
NAN_METHOD(Context2d::SetFillRule){
Context2d *context = Nan::ObjectWrap::Unwrap<Context2d>(info.This());
cairo_t *ctx = context->context();
String::Utf8Value str(info[0]);
cout << "set method called";
...
}
以前的方法有效,但从未显示 cout。在 node-gyp 构建期间是否丢失/显示?我做错了什么吗?有没有办法实现它?