Deletes specified items.
| Name | Type | Description |
ids required | array | array with specified item ids |
cb optional | function | callback function |
this.filecmdDelete = function(ids, cb) {
return _request({
method: 'POST',
data: {
'ids' : ids
},
url: '/file/delete',
callback: cb
});
}; |
function