将数据从Python发送到Javascript(JSON)

2024-04-28 21:45:50 发布

您现在位置:Python中文网/ 问答频道 /正文

我知道JSON可以解决这个问题,但是我在实现它时遇到了问题。以下是我的方法的细节:

  1. 数据是用Python计算的
  2. 由于数据的大小是动态的,所以我需要使用JavaScript为输出创建额外的HTML表行。因此,我需要将数据从Python传递到JavaScript,让JavaScript“看到”数据。

HTML代码(下面是创建输出页面的HTML代码部分):

class OutputPage(webapp.RequestHandler):
    def func (a,b):
        return a+b #just an example

    def get(self):
        form = cgi.FieldStorage() 
        chem_name = form.getvalue('chemical_name')
        Para1 = form.getvalue('Para1')  #get values from input page--user inputs
        Para1 = float(Para1)
        Para2 = form.getvalue('Para2')  #get values from input page--user inputs
        Para2 = float(Para2)
        out = func (Para1,Para1)
        out_json=simplejson.dumps(out)  # I need to send out to JavaScript
        #writ output page
        templatepath = os.path.dirname(__file__) + '/../templates/'
        html = html + template.render (templatepath + 'outputpage_start.html', {})
        html = html + template.render (templatepath + 'outputpage_js.html', {})               
        html = html + """<table width="500" class='out', border="1">
                          <tr>  
                            <td>parameter 1</td>
                            <td>&nbsp</td>                            
                            <td>%s</td>
                          </tr>
                          <tr>  
                            <td>parameter 2</td>
                            <td>&nbsp</td>                            
                            <td>%s</td>
                          </tr>                                                      
                          </table><br>"""%(Para1, Para2)
        html = html + template.render(templatepath + 'outputpage_end.html', {})
        #attempt to 'send' Python data (out_json) to JavaScript, but I failed.
        html = html + template.render({"my_data": out_json})  
        self.response.out.write(html)

app = webapp.WSGIApplication([('/.*', OutputPage)], debug=True)

JavaScript代码(我使用JavaScript动态创建其他输入表文件名:'outputpage_js.html'):

<script>
<script type='text/javascript'> 

$(document).ready(function(){
    //I assume if my Json statement works, I should be able to use the following argument to create a HTML row
    $('<tr><td>Parameter 2</td><td>&nbsp</td><td>out_json</td>').appendTo('.app')   

</script>    

谢谢你的帮助!


Tags: to数据formjsonhtmltemplatejavascriptrender
1条回答
网友
1楼 · 发布于 2024-04-28 21:45:50

您不必“实现”JSON,python附带了一个内置的lib,名为simplejson,您可以用普通的dict来提供:

try: 
  import simplejson as json
except:
  import json
out = {'key': 'value', 'key2': 4}
print json.dumps(out)

编辑: 正如tadeck所指出的,simplejson应该是最新的,并且不等于json,但是有可能,simplejson是不可用的,因为它是外部维护的

编辑2: 根据这个答案中的讨论和页面上的讨论,我认为最好的方法是这样的:

Python

# [...] generate dynamic data [...]
html = html + template.render (templatepath + 'outputpage_start.html', {})
html = html + template.render (templatepath + 'outputpage_js.html', {})               
html = html + """<table width="500" class='out' border="1" data-dynamic="%s">""" % json.dumps(your_generated_data_dict)
#tr/td elements and templating as needet
self.response.out.write(html)

javascript

$(function(){
    var your_generated_table = $('table'),
        dynamic_data = JSON.parse(your_generated_table.attr('data-dynamic'));
});

然后,python dict拥有与javascript对象完全相同的结构。

相关问题 更多 >