JS_CompileFunction 编辑

Obsolete since JSAPI 36
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.

Creates a JavaScript function from a text string.

Syntax

JSFunction *
JS_CompileFunction(JSContext *cx, JSObject *obj,
    const char *name, unsigned int nargs, const char **argnames,
    const char *body, size_t length, const char *filename,
    unsigned int lineno);

JSFunction *
JS_CompileUCFunction(JSContext *cx, JSObject *obj,
    const char *name, unsigned int nargs, const char **argnames,
    const jschar *body, size_t length, const char *filename,
    unsigned int lineno);
NameTypeDescription
cxJSContext *The context in which to compile the function. Requires request. In a JS_THREADSAFE build, the caller must be in a request on this JSContext.
objJSObject *Object with which the function is associated.
nameconst char *Name to assign the newly compiled function.
nargsunsigned intNumber of arguments to pass to the function.
argnamesconst char **Names to assign to the arguments passed to the function.
bodyconst char * or const jschar *String containing the body of the function to compile.
lengthsize_tThe length, in characters, of body.
filenameconst char *Name of file or URL containing the function. Used to report filename or URL in error messages.
linenounsigned intLine number. Used to report the offending line in the file or URL if an error occurs.

Description

JS_CompileFunction compiles a function from a text string, bytes, and optionally associates it with a JS object, obj. JS_CompileUCFunction is the Unicode version of the function.

name is the name to assign to the newly created function. nargs is the number of arguments the function takes, and argnames is a pointer to the first element of an array of names to assign each argument. The number of argument names should match the number of arguments specified in nargs.

body is a string containing the source code of the function. length is the length of the source code in characters.

filename is the name of the file (or URL) containing the function. This information is used in error messages if an error occurs during compilation. Similarly, lineno is used to report the line number where an error occurred during compilation.

If both obj and name are non-null, the new function becomes a method of obj. (A new property is defined on obj with the given name and the new Function object as its value.)

On success, JS_CompileFunction and JS_CompileUCFunction return a pointer to the newly compiled function. On error or exception, they return NULL.

See Also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:98 次

字数:6936

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文