如何从 CherryPy 中的 GET 请求读取参数?
如何从 CherryPy 中的 GET 请求读取参数?我像 JQuery 一样生成请求
$.get(
"http://localhost:8080/temp",
"{a:10}",
function(data) { alert(data); },
"html"
);
,并且我有带有 @cherrypy.expose 函数索引(self)的类 temp。如何从 GET 请求中提取数据?
How to read parameters from GET request in CherryPy ? I generate request from JQuery like
$.get(
"http://localhost:8080/temp",
"{a:10}",
function(data) { alert(data); },
"html"
);
and I have class temp with @cherrypy.expose function index(self). How to extract data from GET request ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
其中
param
是您的 GET 参数where
param
is your GET param正如 virhilo 提到的,您可以在方法中使用命名参数。
另外,您还可以阅读
cherrypy.request.params
。As virhilo mentioned, you can take named parameters in with your method.
Also, you can read
cherrypy.request.params
.使用POST和GET(以及PUT、PATCH等...),您可以使用
: code>key_name 是你想要获取的键名。
With both POST and GET (and PUT, PATCH, etc...) you can use:
Where
key_name
is the key name you want to get.