本文介绍了在服务器上传递瓶子python变量来作为道具反应的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 我试图从服务器传递瓶变量作出反应,但我无法得到它的工作。目前,我在reactjs文件中有一个渲染函数,如下所示:
ReactDOM.render(
<属性prop1 ='{{prop1}}'prop2 ='{{prop2}}'/ > ;,
document.getElementById('main')
);

在python服务器上,我有:

 返回render_template('index.html',prop1 = var1,prop2 = var2)

$ b $它应该是

 <属性prop1 = {prop1} prop2 = {prop2} /> 


I'm trying to pass flask variables from the server to react but I can't get it working. At the moment I have a render function in a reactjs file that looks like:
ReactDOM.render(
  <Attribute prop1='{{ prop1 }}' prop2='{{ prop2 }}' />,
  document.getElementById('main')
);

In python on the flask server I have:

return render_template('index.html', prop1=var1, prop2=var2)
解决方案

It should be

  <Attribute prop1={ prop1 } prop2={ prop2 } />

这篇关于在服务器上传递瓶子python变量来作为道具反应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 12:51