See all the parameters of the request erlang/ChicagoBoss

trex

I'm getting undefined everytime from the response for a hidden field "F_02_displayorder". I'm debugging value as in Erlang Code:

error_logger:info_msg(" Value - F_02_displayorder ", [Req:post_param("F_02_displayorder")])

You would know that Air Client doesn't have any javascript debugger. So, I'm not able to see what values are going in the request. but now I want to check what values are coming in the Request. Can anyone tell me what should I do to check all the values in the dictionary.

In python I was creating a request dictionary like dict(zip(request.POST.keys(), request.POST.values())).

Laxmikant Ratnaparkhi

Req:request_body() I think this is what you're looking for. This returns a binary string you might need to split it by "&" and "=" to get exact values. Here is the way you can split it.

   RequestBody = string:tokens(binary_to_list(Req:request_body()), "&")

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

How to send request parameters to spring webflow controller

来自分类Dev

Error when parsing parameters for a PUT request

来自分类Dev

Is it possible to get POST parameters from REST request?

来自分类Dev

Manually parsing parameters from put request in tomcat

来自分类Dev

AJAX POST request with GET Parameters in URL

来自分类Dev

Can I see all the string values (resources) in one place?

来自分类Dev

How to see all local commits which are not pushed to the remote branch?

来自分类常见问题

Laravel Request :: all()不应被静态调用

来自分类Dev

dd($ request-> all()); 返回空数组

来自分类Dev

如何遍历 request()-> all() post (Laravel) 数据?

来自分类Dev

Dynamically add query parameters without value to Retrofit request

来自分类Dev

How to send json data in url as request parameters in java

来自分类Dev

request.parameters.next 在 Vapor 机制中是如何工作的?

来自分类Dev

Laravel:将数据添加到$ request-> all()

来自分类Dev

什么等同于:Laravel 4中的Request :: route()-> parameters [1]?

来自分类常见问题

Error when trying to inject a service into an angular component "EXCEPTION: Can't resolve all parameters for component", why?

来自分类Dev

Yii2 pretty URL: automatically convert everything with slashes (including all parameters)

来自分类Dev

Jenkins pull request plugin triggers builds from all branches in a repo and not a specific branch

来自分类Dev

Django dev server request.META has all my env vars

来自分类Dev

使用PUT方法AJAX在Laravel 6中导致空的$ request-> all()数组

来自分类Dev

是否必须在HTTP Request Defaults中选中“ Retrieve All Embedded Resources”以进行性能测试?

来自分类Dev

如何将其他参数添加到Request.ServerVariables.Get(“ ALL_HTTP”)

来自分类Dev

在Laravel 5.2中Validator :: make($ request-> all()会做什么?

来自分类Dev

Laravel 5 - Ajax POST - $request->all() 在 PostController 中返回空数组

来自分类Dev

在PhpStorm中标记@see

来自分类Dev

see NodeJs version and were installed

来自分类Dev

Laravel: request::is() 和 request::patch()

来自分类Dev

Parameters.AddWithValue与Parameters.Add?

来自分类Dev

Cmd.Parameters 与 Cmd.Parameters.Item

Related 相关文章

  1. 1

    How to send request parameters to spring webflow controller

  2. 2

    Error when parsing parameters for a PUT request

  3. 3

    Is it possible to get POST parameters from REST request?

  4. 4

    Manually parsing parameters from put request in tomcat

  5. 5

    AJAX POST request with GET Parameters in URL

  6. 6

    Can I see all the string values (resources) in one place?

  7. 7

    How to see all local commits which are not pushed to the remote branch?

  8. 8

    Laravel Request :: all()不应被静态调用

  9. 9

    dd($ request-> all()); 返回空数组

  10. 10

    如何遍历 request()-> all() post (Laravel) 数据?

  11. 11

    Dynamically add query parameters without value to Retrofit request

  12. 12

    How to send json data in url as request parameters in java

  13. 13

    request.parameters.next 在 Vapor 机制中是如何工作的?

  14. 14

    Laravel:将数据添加到$ request-> all()

  15. 15

    什么等同于:Laravel 4中的Request :: route()-> parameters [1]?

  16. 16

    Error when trying to inject a service into an angular component "EXCEPTION: Can't resolve all parameters for component", why?

  17. 17

    Yii2 pretty URL: automatically convert everything with slashes (including all parameters)

  18. 18

    Jenkins pull request plugin triggers builds from all branches in a repo and not a specific branch

  19. 19

    Django dev server request.META has all my env vars

  20. 20

    使用PUT方法AJAX在Laravel 6中导致空的$ request-> all()数组

  21. 21

    是否必须在HTTP Request Defaults中选中“ Retrieve All Embedded Resources”以进行性能测试?

  22. 22

    如何将其他参数添加到Request.ServerVariables.Get(“ ALL_HTTP”)

  23. 23

    在Laravel 5.2中Validator :: make($ request-> all()会做什么?

  24. 24

    Laravel 5 - Ajax POST - $request->all() 在 PostController 中返回空数组

  25. 25

    在PhpStorm中标记@see

  26. 26

    see NodeJs version and were installed

  27. 27

    Laravel: request::is() 和 request::patch()

  28. 28

    Parameters.AddWithValue与Parameters.Add?

  29. 29

    Cmd.Parameters 与 Cmd.Parameters.Item

热门标签

归档