在SpiderMonkey中,如何从C代码中获取JSObject的属性值?

static JSBool
JSD_getter(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
    jsval js_id;
    JS_GetProperty(cx, obj, "id", &js_id); // js_id has JavaScript type
    int c_id;
    JS_ValueToInt32(cx, js_id, &c_id); // Now, c_id contains the actual value
}                                      // of obj.id, as a C native type
有帮助吗?

解决方案

JS_GetProperty()

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top