美文网首页
1.execj python中的应用

1.execj python中的应用

作者: 记事本的记事本 | 来源:发表于2019-03-06 23:02 被阅读0次
        
     
    import execjs
    def get_js():  
           
        f = open(r"sign.js", 'r', encoding='UTF-8')  ##打开JS文件
        line = f.readline()
        htmlstr = ''
        while line:
            htmlstr = htmlstr + line
            line = f.readline()
        ctx = execjs.compile(htmlstr)
        return ctx.call('get_as_cp_signature')
    
    
    

    相关文章

      网友评论

          本文标题:1.execj python中的应用

          本文链接:https://www.haomeiwen.com/subject/odifpqtx.html