Javascript,如何将 Blockly 生成的 Python 代码保存到 .py 文件?
Javascript, how to save Blockly-generated Python code to a .py file?
我有一台带有 Web 服务器的 linux 机器,我使用 google BLockly 生成 python 代码。它正确生成它,我使用 alert(code) 来显示代码。如何将其保存到位于同一网络服务器上的文件中?
function showCode() {
// Generate Python code and display it.
var code = Blockly.Python.workspaceToCode(workspace);
alert(code);
}
我没有完全理解上下文,
我想你是在客户端生成代码,你想保存它。
如果要将其保存在客户端(来自浏览器的文件保存选项),请使用以下库
https://github.com/eligrey/FileSaver.js
如果你想在服务器端保存它,post数据从你的javascript本身到服务器并将内容写入服务器中的文件。
让我们使用 jquery 到 post 数据。假设您的代码在变量 'code'
中
$.post("/savecode",
{
data: code
},
function(data,status){
alert("Data: " + data + "\nStatus: " + status);
});
这将post数据到uri 'savecode'
我想,您创建了一个静态 html 页面,里面有一些 javascript,并从 apache 或 https 服务器的 /var/ww/html/ 文件夹提供它。这行不通,您需要从 Web 应用程序提供服务。我在这里选择 python 烧瓶,这很简单。
接收数据并存储在服务器中,假设您的静态页面是 home.html 并且在模板文件夹中
from flask import Flask, render_template, request
from werkzeug import secure_filename
app = Flask(__name__)
# Sending the home page when browsing /home
@app.route('/home')
def home():
return render_template('home.html')
# Saving the code posted by the javascript app
@app.route('/savecode', methods=['POST'])
def savecode():
f = request.files['file']
f.save(secure_filename(f.filename))
return 'file saved successfully'
if __name__ == '__main__':
app.run()
有关更多信息,请查看烧瓶文档:http://flask.pocoo.org/
您可以在您喜欢的任何 language/framework 中创建服务器程序。
我有一台带有 Web 服务器的 linux 机器,我使用 google BLockly 生成 python 代码。它正确生成它,我使用 alert(code) 来显示代码。如何将其保存到位于同一网络服务器上的文件中?
function showCode() {
// Generate Python code and display it.
var code = Blockly.Python.workspaceToCode(workspace);
alert(code);
}
我没有完全理解上下文, 我想你是在客户端生成代码,你想保存它。 如果要将其保存在客户端(来自浏览器的文件保存选项),请使用以下库
https://github.com/eligrey/FileSaver.js
如果你想在服务器端保存它,post数据从你的javascript本身到服务器并将内容写入服务器中的文件。
让我们使用 jquery 到 post 数据。假设您的代码在变量 'code'
中 $.post("/savecode",
{
data: code
},
function(data,status){
alert("Data: " + data + "\nStatus: " + status);
});
这将post数据到uri 'savecode'
我想,您创建了一个静态 html 页面,里面有一些 javascript,并从 apache 或 https 服务器的 /var/ww/html/ 文件夹提供它。这行不通,您需要从 Web 应用程序提供服务。我在这里选择 python 烧瓶,这很简单。
接收数据并存储在服务器中,假设您的静态页面是 home.html 并且在模板文件夹中
from flask import Flask, render_template, request
from werkzeug import secure_filename
app = Flask(__name__)
# Sending the home page when browsing /home
@app.route('/home')
def home():
return render_template('home.html')
# Saving the code posted by the javascript app
@app.route('/savecode', methods=['POST'])
def savecode():
f = request.files['file']
f.save(secure_filename(f.filename))
return 'file saved successfully'
if __name__ == '__main__':
app.run()
有关更多信息,请查看烧瓶文档:http://flask.pocoo.org/
您可以在您喜欢的任何 language/framework 中创建服务器程序。