在针对 REST 的 wiki 文章 < a href = “ http://en.wikipedia.org/wiki/Reporting ational _ State _ Transfer”rel = “ noReferrer”> wiki article for REST 中 指示如果使用 http://example.com/resources DELETE,则表示正在删除整个集合。
如果使用 http://example.com/resources/7HOU57Y DELETE,则表示正在删除该元素。
我正在做一个网站,注意不是网络服务。
I have a list that has 1 checkbox for each item on the list. Once i select multiple items for deletion, i will allow users to press a button called DELETE SELECTION. If user presses the button, a js dialog box will popup asking user to confirm the deletion. if user confirms, all the items are deleted.
So how should i cater for deleting multiple items in a RESTFUL way?
注意,目前对于网页中的 DELETE,我所做的是使用 FORM 标记和 POST 作为操作,但是从 这就是其他人在如何对网页进行 RESTful 删除时给出的指示开始包含一个值为 DELETE 的 _ 方法。