Django - 请求类型

时间:2012-11-09 16:36:38

标签: django

我对这种行为感到困惑。代码只是打印请求的类型。第一种方法有效,但第二种方法返回一个空字符串。类的类型是django.corehandlers.wsgi.WSGIRequest。


(编辑澄清)

def someview(request):                                                                                                                                        
    html+="<p>type of the request each char "                                                                                                                 
    for i in range(47):                                                                                                                                       
        html+= (str(type(request))[i])                                                                                                                        
    html+="</p>"                                                                                                                                              

    html+="<p>type of the request each char "                                                                                                                 
    for i in range(47):                                                                                                                                       
        html+= repr(str(type(request))[i])                                                                                                                    
    html+="</p>"                                                                                                                                              

    return HttpResponse(html) 

结果如下。第二个字符串是空的。

type of the request each char '<''c''l''a''s''s'' '"'"'d''j''a''n''g''o''.''c''o''r''e''.''h''a''n''d''l''e''r''s''.''w''s''g''i''.''W''S''G''I''R''e''q''u''e''s''t'"'"'>'

type of the request:   

1 个答案:

答案 0 :(得分:1)

所以你的问题是为什么第二行不打印任何东西?答案是,您需要repr(),而不是str()

但是,你意识到总是是同一个WSGIRequest,对吧?您正在打印request对象的的表示。

您可能需要request.METHOD