0

我正在努力学习 Django。我有一个包含类的python程序。所有使用python类的例子都继承了Model.model。我的课不需要任何数据库。任何人都可以帮助我如何在 django 中为这种特殊情况设置 urls.py 吗?

到目前为止我所做的是我已经导入了类,以及类中的方法,我必须从中显示我的值。但它总是向我显示一些错误。

这是我在 urls.py 中所做的:

 1. from mysite.to_twitter_streaming import StdOutListener 
 2. url(r'^temp/$', StdOutListener().text_extract) 

这个 StdOutListener 是类,而 text_extract 是具有我想要打印的值的函数。

我用它来打印:

 return render_to_response('TwitterApi.html', {'link': key, 'count':self.counter}) 

我得到的错误是:

 1. TypeError at /temp/ 
 2. expected string or buffer
4

1 回答 1

1

好的,在你的 urls.py

更改格式

 url(r'^temp/$', text_extract), 

我假设你有text_extract 你的看法

在你的views.py

def text_extract(request):
    # do your stuff

    return render_to_response('TwitterApi.html', {'link': key, 'count':self.counter}) 
于 2013-03-04T08:30:03.020 回答