admin管理员组文章数量:1344082
I want to pass the id
and dept
field in a DELETE HTTP request and fetch inside deleteData()
but I'm receiving null in deleteData()
for id
and dept
.
$http['delete']('webapi/Data/delete?' + cdata.id + "&&" + cdata.lineUp)
@DELETE()
@Path("/delete")
public String deleteData(@QueryParam("id") String id, @QueryParam("dept") String dept){
I want to pass the id
and dept
field in a DELETE HTTP request and fetch inside deleteData()
but I'm receiving null in deleteData()
for id
and dept
.
$http['delete']('webapi/Data/delete?' + cdata.id + "&&" + cdata.lineUp)
@DELETE()
@Path("/delete")
public String deleteData(@QueryParam("id") String id, @QueryParam("dept") String dept){
Share
Improve this question
edited Jan 22, 2017 at 16:42
Eldelshell
6,9608 gold badges47 silver badges64 bronze badges
asked Jan 22, 2017 at 15:15
d3514514d3514514
911 gold badge2 silver badges8 bronze badges
1
- I think you need more context around the problem. – Aaron Commented Jan 22, 2017 at 17:21
1 Answer
Reset to default 7HTTP Delete
does not accept data as an argument.
Won't Work
Otherwise, I would pass an object like so:
var cdata = {
id: 2,
lineUp: [...]
};
// won't work
$http.delete('webapi/Data/delete, cdata)
.then(function(response) {
console.log(response);
})
.then(function(error) {
console.log(error);
});
If you wanted to be truly RESTful, you shouldn't need to pass anything to the HTTP Delete
method besides the id
.
RESTFul
var cdata = {
id: 2,
lineUp: [...]
};
// RESTful
$http.delete('webapi/Data/delete/' + cdata.id)
.then(function(response) {
console.log(response);
})
.then(function(error) {
console.log(error);
});
You can, however, use HTTP Post
as a workaround.
Workaround
var cdata = {
id: 2,
lineUp: [...]
};
// workaround
$http.post('webapi/Data/delete, cdata)
.then(function(response) {
console.log(response);
})
.then(function(error) {
console.log(error);
});
本文标签: javascriptPass multiple parameters in HTTP DELETE requestStack Overflow
版权声明:本文标题:javascript - Pass multiple parameters in HTTP DELETE request - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743744193a2531452.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论