Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Philip Sturgeon 的 REST 服务器为我的网站制作 API,但我有点进退两难。我不确定哪个动作用于编辑和哪个创建。发布还是放置?
POST方法通常用于创建操作, 而PUT用于编辑/更新操作。
Put 方法是幂等的,而 Post 方法是非幂等的。意味着 put 是安全可重复的,而 post 是不安全可重复的