This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
创建一个 HTTP POST 端点(带有标题“application/x-www-form-urlencoded”)是一种常见的做法吗?它将 JSON 字符串作为键/值 POST 数据的值而不是列表字段作为 POST 数据?无论是否常见,它是否被认为是不好的,因为它需要更多的工作来将字段字符串化为 JSON 字符串?
示例: POST 表单数据中的 user={"username":"bob", "age":1} vs username=bob&age=1。