當前位置: 首頁>>代碼示例>>Python>>正文


Python PyV8.JSContext方法代碼示例

本文整理匯總了Python中PyV8.JSContext方法的典型用法代碼示例。如果您正苦於以下問題:Python PyV8.JSContext方法的具體用法?Python PyV8.JSContext怎麽用?Python PyV8.JSContext使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PyV8的用法示例。


在下文中一共展示了PyV8.JSContext方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: _exec_

# 需要導入模塊: import PyV8 [as 別名]
# 或者: from PyV8 import JSContext [as 別名]
def _exec_(self, source):
            source = '''\
            (function() {{
                {0};
                {1};
            }})()'''.format(
                encode_unicode_codepoints(self._source),
                encode_unicode_codepoints(source)
            )
            source = str(source)

            # backward compatibility
            with contextlib.nested(PyV8.JSContext(), PyV8.JSEngine()) as (ctxt, engine):
                js_errors = (PyV8.JSError, IndexError, ReferenceError, SyntaxError, TypeError)
                try:
                    script = engine.compile(source)
                except js_errors as e:
                    raise exceptions.RuntimeError(e)
                try:
                    value = script.run()
                except js_errors as e:
                    raise exceptions.ProgramError(e)
                return self.convert(value) 
開發者ID:Prometheusx-git,項目名稱:plugin.video.unofficial9anime,代碼行數:25,代碼來源:_pyv8runtime.py

示例2: exec_

# 需要導入模塊: import PyV8 [as 別名]
# 或者: from PyV8 import JSContext [as 別名]
def exec_(self, source):
            source = '''\
            (function() {{
                {0};
                {1};
            }})()'''.format(
                encode_unicode_codepoints(self._source),
                encode_unicode_codepoints(source)
            )
            source = str(source)

            import PyV8
            import contextlib
            #backward compatibility
            with contextlib.nested(PyV8.JSContext(), PyV8.JSEngine()) as (ctxt, engine):
                js_errors = (PyV8.JSError, IndexError, ReferenceError, SyntaxError, TypeError)
                try:
                    script = engine.compile(source)
                except js_errors as e:
                    raise RuntimeError(e)
                try:
                    value = script.run()
                except js_errors as e:
                    raise ProgramError(e)
                return self.convert(value) 
開發者ID:coder-alpha,項目名稱:FMoviesPlus.bundle,代碼行數:27,代碼來源:__init__.py

示例3: eval_pyv8

# 需要導入模塊: import PyV8 [as 別名]
# 或者: from PyV8 import JSContext [as 別名]
def eval_pyv8(self, script):
        rt = PyV8.JSContext()
        rt.enter()
        return rt.eval(script) 
開發者ID:thispc,項目名稱:download-manager,代碼行數:6,代碼來源:JsEngine.py

示例4: get_ctx

# 需要導入模塊: import PyV8 [as 別名]
# 或者: from PyV8 import JSContext [as 別名]
def get_ctx():
    if not hasattr(get_ctx, 'ctx'):
        ctx = PyV8.JSContext()
        ctx.enter()
        get_ctx.ctx = ctx
    return get_ctx.ctx 
開發者ID:mobishift2011,項目名稱:data007,代碼行數:8,代碼來源:jsctx.py

示例5: executeJS

# 需要導入模塊: import PyV8 [as 別名]
# 或者: from PyV8 import JSContext [as 別名]
def executeJS(js_func_string, arg):
    ctxt = PyV8.JSContext()
    ctxt.enter()
    func = ctxt.eval("({js})".format(js=js_func_string))
    return func(arg) 
開發者ID:jhao104,項目名稱:memory-notes,代碼行數:7,代碼來源:demo_1.py


注:本文中的PyV8.JSContext方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。