使用.PUT
多部分消息的最佳语法是什么?REST
我有一个需要多个字段才能提交消息的数据库。
First part: The quick brown fox
Second part : jumps over the
Third part ; lazy dog.
PUT api.com/newdata/The quick brown fox/jumps over the/lazy dog.
也许?例如,如果一个部分是空的会发生什么
PUT api.com/newdata/The quick brown fox//lazy dog.
还是应该只使用查询字符串?
PUT api.com/newdata?part1=The quick brown fox&part2=jumps over the&part3=lazy dog.