前天用V友方法request.GET确实能够获取form的值,但是放到URL里面就会报错“name 'request' is not defined”,把代码中str(link[0])换成request.GET.get('q','')却又能传输到变量,是赋值问题还是其他什么问题。
报错内容:
NameError at /search/
request' is not defined
/home/mysite/urls.py in <module>
url(r'^search/', include('search.urls')), ...
▶ Local vars
views.py代码
from bs4 import BeautifulSoup
import urllib2
from django.template import Context,loader
from django.http import HttpResponse
keywords = str(request.GET.get('q',''))
url='https://www.baidu.com/s?wd=%s' % keywords
html=urllib2.urlopen(url).read()
soup = BeautifulSoup(html)
link = soup.find_all('div')
def index(request):
template = loader.get_template('index.html')
context = Context({'keyword':str(link[0])})
return HttpResponse(template.render(context))
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.