本文整理汇总了TypeScript中axios.delete函数的典型用法代码示例。如果您正苦于以下问题:TypeScript delete函数的具体用法?TypeScript delete怎么用?TypeScript delete使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了delete函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: destroyAll
export function destroyAll(resourceName: ResourceName, force = false) {
if (force || confirm(t("Are you sure you want to delete all items?"))) {
return axios.delete(urlFor(resourceName) + "all");
} else {
return Promise.reject("User pressed cancel");
}
}
示例2: it
it('DELETE .remove many', () => {
return axios.delete(`http://localhost:${port}/${name}`)
.then(res => {
assert.ok(res.status === 200, 'Got OK status code');
verify.remove(null, res.data);
});
});
示例3: deleteSavedSequence
function deleteSavedSequence({
sequence,
iss,
token
}: SequenceDeletionParams) {
let url = `${iss}api/sequences/${sequence._id}`;
return axios.delete(url, authHeaders(token));
};
示例4: del
export function del(url: string, headers: any): Promise<any> {
headers["User-Agent"] = userAgent;
return axios
.delete(url, { headers })
.then(res => res.data)
.catch(wrapError);
}
示例5: Promise
return new Promise((resolve, reject) => {
Axios.delete(url, options)
.then(response => {
resolve(response.data)
})
.catch(e => {
reject(e)
})
})
示例6: dispatch
export const deleteEntity: ICrudDeleteAction<IDialogue> = id => async dispatch => {
const requestUrl = `${apiUrl}/${id}`;
const result = await dispatch({
type: ACTION_TYPES.DELETE_DIALOGUE,
payload: axios.delete(requestUrl)
});
dispatch(getEntities());
return result;
};
示例7: dispatch
export const deleteEntity: ICrudDeleteAction<ICustomerFlock> = id => async dispatch => {
const requestUrl = `${apiUrl}/${id}`;
const result = await dispatch({
type: ACTION_TYPES.DELETE_CUSTOMERFLOCK,
payload: axios.delete(requestUrl)
});
dispatch(getEntities());
return result;
};
示例8: dispatch
export const deleteEntity: ICrudDeleteAction<ICurrentMessage> = id => async dispatch => {
const requestUrl = `${apiUrl}/${id}`;
const result = await dispatch({
type: ACTION_TYPES.DELETE_CURRENTMESSAGE,
payload: axios.delete(requestUrl)
});
dispatch(getEntities());
return result;
};
示例9: dispatch
export const deleteUser: ICrudDeleteAction<IUser> = id => async dispatch => {
const requestUrl = `${apiUrl}/${id}`;
const result = await dispatch({
type: ACTION_TYPES.DELETE_USER,
payload: axios.delete(requestUrl)
});
dispatch(getUsers());
return result;
};
示例10: function
return function (dispatch, getState) {
dispatch({ type: "DESTROY_PLANT_START" });
return Axios.delete<Plant>(url, authHeaders(token))
.then((resp) => {
let payload = plant;
dispatch({ type: "DESTROY_PLANT_OK", payload });
})
.catch((payload) => {
error("Tried to delete plant, but couldn't.");
dispatch({ type: "DESTROY_PLANT_ERR", payload });
});
};