Web.py 在这种情况下如何访问渲染函数

发布于 2024-11-26 05:33:05 字数 916 浏览 2 评论 0原文

我是 Python 和 Web.py 的新手,但我对这个问题感到抓狂。我有一个代码布局,我的 app.py 文件位于网站的根目录中。所有页面都位于一个名为 pages 的子目录中。这是我的 app.py 代码

import web
import page.index

urls = (
    '/', 'page.index.index',
)

render = web.template.render('templates/', base = "layout") # Start the template 
app = web.application(urls, globals()) # Start the app

if __name__ == "__main__":
    app.run()

现在,它执行得很好。现在,在index.py文件中,这是我的代码:

class index:
    def GET(self):
        testing = 'Hello World'
        return render.index(testing)

我得到的错误是这样的:

<type 'exceptions.NameError'> at /
global name 'render' is not defined
Python  /Volumes/Local Disk 2/Work/Casting Board/com/index.py in GET, line 3
Web     GET http://127.0.0.1:8080/

基本上,我正在尝试访问该函数(或者它是方法或类。刚刚来自PHP,所以不知道终端) 从名为 page.index 的模块render。我该如何解决这个问题?

I am new to Python and Web.py, but I am tearing my hair out over this issue. I have a code layout where I have my app.py file in the root of my site. All the pages are in a sub director, named pages. Here is my app.py code

import web
import page.index

urls = (
    '/', 'page.index.index',
)

render = web.template.render('templates/', base = "layout") # Start the template 
app = web.application(urls, globals()) # Start the app

if __name__ == "__main__":
    app.run()

Now, it executes perfectly. Now, in the index.py file, this is my code:

class index:
    def GET(self):
        testing = 'Hello World'
        return render.index(testing)

The error I am getting is this:

<type 'exceptions.NameError'> at /
global name 'render' is not defined
Python  /Volumes/Local Disk 2/Work/Casting Board/com/index.py in GET, line 3
Web     GET http://127.0.0.1:8080/

Basically, I am trying to access the function ( or it is method or class. Just coming from PHP so don't know the terminally) render from a moucle called page.index. How can I get around this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

我只土不豪 2024-12-03 05:33:05

在index.py页面中,是否应该包含from web.template import render

In the index.py page, should you include from web.template import render ?

知足的幸福 2024-12-03 05:33:05

假设 web.template.render() 返回一个包含 index() 方法的对象(我不熟悉 web.py),你需要告诉 Python 在哪里可以找到这个对象。

index.py中:

import app

然后:

    return app.render.index(testing)

Presuming web.template.render() returns an object containing an index() method (I'm not familiar with web.py), you'll need to tell Python where to find this object.

In index.py:

import app

Then:

    return app.render.index(testing)
眼泪都笑了 2024-12-03 05:33:05

您只需在 app.py 文件中包含索引类 (index.py) 即可。然后导入 Web 模块将在代码开头引入函数“render”的定义。

You can just include you index class (index.py) within your app.py file. Importing the web module then will bring in the definition of the function "render" at the beginning of your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文