我正在尝试使用svgedit作为基础项目并添加自定义按钮来调用特定的 python 文件。我像这样安装并运行 svgedit:
1- Clone or copy the repository contents
2- run npm i to install dependencies
3- run npm run start to start a local server
4- Use your browser to access http://localhost:8000/src/editor/index.html
我尝试使用 require() 使用节点模块 python-shell 调用我的 python 脚本,但在客户端找不到 require()。我比在这里找到了这个答案,但我不知道在 svgedit 服务器端的哪里添加代码(在哪个文件中?)
在 package.json 中有一个“脚本”列表,我正在调用
node run start
并启动意味着
"start": "web-dev-server --app-index src/editor/index.html --open --node-resolve",
是否可以通过 svgedit 中的客户端调用在服务器端运行带有虚拟解释器的 pyhton 脚本?