1
def process_health_case(request):
    about = request.POST['about']
    details = request.POST['narrative_text']
    image=request.FILES['image_scan']
    connection = Connection('mongodb://sbose78:PASSWORD@staff.mongohq.com:10068/BOSE')
    if images:
        db=connection['BOSE']
        fs=gridfs.GridFS(db)
        fs.put(image,filename="image_scan2")
    else:
        #nothing
    return render_to_response('home/new_narrative.html',{ }, context_instance=RequestContext(request))

我越来越

expected an indented block (views.py, line 41)

第 41 行是最后一行。

我哪里错了?

谢谢。

4

1 回答 1

6

您不能将注释用作空语句,pass如果您想要一个不执行任何操作的显式 else,则应使用该注释。

if images:
    db=connection['BOSE']
    fs=gridfs.GridFS(db)
    fs.put(image,filename="image_scan2")
else:
    pass
return ....

由于没有声明,只是else代码中的注释,python 认为return应该是 the 的内容else并给出意图错误。

于 2012-09-08T06:56:41.687 回答