首页 > 解决方案 > 使用 python 和 django 框架工作问题

问题描述

from django.http import HttpResponse
from django.shortcuts import render

def homepage(request):
    return render(request,'home.html')
def count(request):
    data= request.GET('full textarea')
    print(data)
    return render(request,'count.html',{'full text':data})

错误='QueryDict' object is not callable

标签: python-3.x

解决方案


推荐阅读