Skip to content

[Question] Why are the return values ​​of the two functions different? #444

Open
@sdg9670

Description

@sdg9670

Napi::Object MyObject::NewInstance(Napi::Env env, Napi::Value arg) {
Napi::EscapableHandleScope scope(env);
Napi::Object obj = env.GetInstanceData<Napi::FunctionReference>()->New({arg});
return scope.Escape(napi_value(obj)).ToObject();
}

Napi::Value MyObject::Multiply(const Napi::CallbackInfo& info) {
Napi::Number multiple;
if (info.Length() <= 0 || !info[0].IsNumber()) {
multiple = Napi::Number::New(info.Env(), 1);
} else {
multiple = info[0].As<Napi::Number>();
}
Napi::Object obj = info.Env().GetInstanceData<Napi::FunctionReference>()->New(
{Napi::Number::New(info.Env(), this->value_ * multiple.DoubleValue())});
return obj;
}

I'm Newby, who just got into NAPI.
In the above two codes, methods are create and return the object.
I wonder why only the return value in NewInstance uses escape scope.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions