• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回python栏目

87 - 第三方库 - PyExecJS - 调用JavaScript

作者:

贺及楼

成为作者

更新日期:2024-12-02 10:55:46

PyExecJS

PyExecJS参考网站

https://github.com/doloopwhile/PyExecJS
https://pypi.org/project/PyExecJS/
https://pypi.org/project/PyExecJS2/
PyExecJS只更新到1.5.0
PyExecJS2更新到 1.6.1

PyExecJS安装

  1. pip install PyExecJS
  2. pip install PyExecJS2

PyExecJS有版本:
1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.4.0, 1.4.1, 1.5.0, 1.5.1
PyExecJS2有版本:
1.6.1

导入

  1. import execjs

Javascript导入python

  1. ctx = execjs.compile('''
  2. function add(a, b) {
  3. return a + b;
  4. }
  5. ''')

Javascript文件导入python

  1. current_path = os.getcwd() # 假设当前工作目录为
  2. parent_directory_path = os.path.dirname(current_path) # 获取上一层目录
  3. print(current_path)
  4. print(parent_directory_path)
  5. ## 看一下现在的路径
  6. with open('script.js', 'r') as file:
  7. script = file.read()
  8. ctx = execjs.compile(script)

自带方法 - open() - 读写文件打开文件详细可以看这篇

Javascript导入Javascript

  1. ctx = execjs.compile('''
  2. var jQuery = require('jquery');
  3. ''')

执行Javascript + 传参数

  1. result = ctx.call('add', 2, 3)
  2. print(result) # 输出:5

执行JavaScript

获得参数、获得属性

  1. ctx = execjs.compile('''
  2. var person = {
  3. name: 'John',
  4. age: 30
  5. };
  6. person.age;
  7. ''')
  8. result = ctx.eval('person')
  9. result = ctx.eval('person.age')