本文整理汇总了TypeScript中@dojo/stores/state/operations.remove函数的典型用法代码示例。如果您正苦于以下问题:TypeScript remove函数的具体用法?TypeScript remove怎么用?TypeScript remove使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了remove函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: get
const removeTagCommand = commandFactory<TagPayload>(({ get, at, path, payload: { tag } }) => {
const tags = get(path('editor', 'tagList'));
const index = tags.indexOf(tag);
if (index !== -1) {
return [remove(at(path('editor', 'tagList'), index))];
}
return [];
});
示例2: get
const deleteCommentCommand = commandFactory<DeleteCommentPayload>(async ({ at, get, path, payload: { slug, id } }) => {
const token = get(path('user', 'token'));
await fetch(`${baseUrl}/articles/${slug}/comments/${id}`, {
method: 'delete',
headers: getHeaders(token)
});
const comments = get(path('article', 'comments'));
let index = -1;
for (let i = 0; i < comments.length; i++) {
if (comments[i].id === id) {
index = i;
break;
}
}
if (index !== -1) {
return [remove(at(path('article', 'comments'), index))];
}
return [];
});
示例3: remove
...keys.filter(key => todos[key].completed).map(key => remove(path('todos', key)))
示例4: commandFactory
const removeTodoCommand = commandFactory(({ payload: { id }, path }): PatchOperation[] => {
return [ remove(path('todos', id)) ];
});