在py文件中触发模板里的js代码
时间:2010-09-27 来源:我爱睡觉
页面在py文件中处理外逻辑以后,需要触发页面上的JS来显示处理结果
其实在web模型中这些逻辑都是相通的,无非是输出js代码块,简易代码如下
class jstest(webapp.RequestHandler): def get(self): self.response.out.write(""" <script type="text/javascript"> alert("test"); </script> """)
相关阅读 更多 +