在web.py中渲染帧HTML

时间:2014-11-19 17:32:16

标签: python html render

我是Python的初学者并使用web.py.我正在尝试使用一个简单的Web程序来渲染帧Web前端。虽然html在从文件系统调用时工作,但是当从Python触发时它不起作用。我在网页上收到一条错误消息,说没找到。看起来渲染无法在html中调用html。有人可以帮忙吗?

以下是我的html文件,名为main.html。 menu.html和txns.html没有被考虑,我收到了一个未找到的错误

<html>
<frameset cols="25%,*,25%">
<frame src="menu.html" />
<frame src="Txns.html" />
</frameset>
</html>

我的python代码如下

import web


urls = (
   '/'
    )

app = web.application(urls, globals())

#render = web.template.render('templates/',base="layout")
render = web.template.render('templates/')

class index(object):
    def GET(self):
        #customer=fae_class.Customer()
        #print customer
        return render.main()

0 个答案:

没有答案