- 论坛徽章:
- 0
|
本帖最后由 redflowflag 于 2013-01-28 08:31 编辑
这两天在学习cherrypy的时候,发现jquery提交的json数据,到了cherrypy就直接提示错误了。
jquery代码如下:-
- <script language="javascript">
- $(function(){
- $("#mainfunc").click(function(){
- $.ajax({
- type:"post",
- url: "/doLogin",
- data:"{'user':'test'}",
- dataType:"json",
- success: processData
- })
- })
- })
- function processData(returnData) {
- alert(returnData.status);
- }
- </script>
复制代码 python代码如下:
- import cherrypyimport os.pathimport jinja2
- #from jinja2 import Environment, FileSystemLoader
- env = jinja2.Environment(loader=jinja2.FileSystemLoader('templates'))
- class PiMes:
- @cherrypy.expose
- def index(self):
- tmpl = env.get_template('index.html')
- return tmpl.render()
- @cherrypy.expose
- @cherrypy.tools.json_in(force=False)
- def doLogin(self):
- da = cherrypy.request.json
- return "any thing"
- def main():
- current_dir = os.path.dirname(os.path.abspath(__file__))
- conf = {
- '/static': {'tools.staticdir.on':True, "tools.staticdir.dir": os.path.join(current_dir,"static")}
- }
- cherrypy.quickstart(PiMes(),"/", config=conf)
- if __name__ == "__main__":
- main()
复制代码 但是每次一提交就报错:
- 400 Bad Request
- Unexpected body parameters: {'user':'test'}
- Traceback (most recent call last):
- File "c:\Python32\lib\site-packages\cherrypy-3.2.2-py3.2.egg\cherrypy\_cpdispatch.py", line 34, in __call__
- return self.callable(*self.args, **self.kwargs)
- TypeError: doLogin() got an unexpected keyword argument '{'user':'test'}'
- During handling of the above exception, another exception occurred:
- Traceback (most recent call last):
- File "c:\Python32\lib\site-packages\cherrypy-3.2.2-py3.2.egg\cherrypy\_cprequest.py", line 656, in respond
- response.body = self.handler()
- File "c:\Python32\lib\site-packages\cherrypy-3.2.2-py3.2.egg\cherrypy\lib\encoding.py", line 188, in __call__
- self.body = self.oldhandler(*args, **kwargs)
- File "c:\Python32\lib\site-packages\cherrypy-3.2.2-py3.2.egg\cherrypy\_cpdispatch.py", line 40, in __call__
- raise sys.exc_info()[1]
- File "c:\Python32\lib\site-packages\cherrypy-3.2.2-py3.2.egg\cherrypy\_cpdispatch.py", line 38, in __call__
- test_callable_spec(self.callable, self.args, self.kwargs)
- File "c:\Python32\lib\site-packages\cherrypy-3.2.2-py3.2.egg\cherrypy\_cpdispatch.py", line 172, in test_callable_spec
- raise cherrypy.HTTPError(400, message=message)
- cherrypy._cperror.HTTPError: (400, "Unexpected body parameters: {'user':'test'}")
复制代码 使用环境 :python 3.2+cherrypy 3.2.2
|
|