我正在使用谷歌应用引擎和python设计一个网络应用程序 在提取表单数据时,即。使用get请求的参数值在运行时期间发生以下错误:
405方法不允许
此资源不允许使用GET方法。
以下是代码: 是获取mothos创建问题还是有任何其他解决方案来获取参数值。
class PostBody(webapp2.RequestHandler):
def post(self):
stringContent=cgi.escape(self.request.get('txtLocation'))
stringurl='http://maps.googleapis.com/maps/api/place/textsearch/json?query='|stringContent|'&sensor=false&key=mykey'
result=json.load(urllib.urlopen(stringurl))
self.response.write(result)
...谢谢
答案 0 :(得分:1)
尝试替换
def post(self)
通过
def get(self)