JS_GetPropertyDefault 编辑
Obsolete since JSAPI 26
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
This article covers features introduced in SpiderMonkey 1.8.5
Finds a specified property and retrieves its value or provided default value.
Syntax
bool
JS_GetPropertyDefault(JSContext *cx, JSObject *obj, const char *name, jsval def,
JS::MutableHandle<JS::Value> vp);
bool
JS_GetPropertyByIdDefault(JSContext *cx, JSObject *obj, jsid id, jsval def,
JS::MutableHandle<JS::Value> vp);
Name | Type | Description |
---|---|---|
cx | JSContext * | A context. Requires request. In a JS_THREADSAFE build, the caller must be in a request on this JSContext . |
obj | JS::HandleObject | Object to search on for the property. |
name or id | const char * or JS::HandleId | Name of the property to look up. |
def | JS::HandleValue | Default value if the property is not found. |
vp | JS::MutableHandleValue | Out parameter. On success, *vp receives the current value of the property, or undefined if no such property is found. |
Description
JS_GetPropertyDefault
examines a specified JS object obj
and its prototype chain for a property with the specified name
.
On success, these functions set *vp
to the current value of the property, or def
if obj
has no such property, and return true
. On an error or exception, these functions return false
, and the value left in *vp
is undefined.
See Also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论