0
我與這瓶在這裏工作反應模板項目,我遇到了一個問題訪問燒瓶變量反應前端
https://github.com/bonniee/react-flask
當渲染的index.html,我要傳回從燒瓶一些數據
@app.route('/')
def hello_world():
return render_template('index.html', somedata="YOOOO")
而在反應的組分使用它
render() {
this.loadDataFromServer();
return <h1>sup? {{somedata}}</h1>;
}
});
有沒有一種乾淨的方式來完成這個項目的格式?