作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
"a=b&c=d" 但是如果我尝试编码嵌-6ren">
灵药URI.encode_query
在非嵌套 map 上效果很好,例如:
URI.encode_query(%{ a: "b", c: "d" }) # => "a=b&c=d"
URI.encode_query(%{ a: %{ b: "c" } })
** (Protocol.UndefinedError) protocol String.Chars not implemented for %{b: "c"}
最佳答案
灵药URI
模块不支持嵌套映射,但您可以使用 plug
包的Plug.Conn.Query.encode/1
确实支持嵌套 map :
iex(1)> Plug.Conn.Query.encode %{ a: "b", c: "d" }
"a=b&c=d"
iex(2)> Plug.Conn.Query.encode %{ a: %{ b: "c" } }
"a[b]=c"
关于Elixir URI.encode_query 嵌套映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43487513/
灵药URI.encode_query在非嵌套 map 上效果很好,例如: URI.encode_query(%{ a: "b", c: "d" }) # => "a=b&c=d" 但是如果我尝试编码嵌
我是一名优秀的程序员,十分优秀!