本文整理汇总了TypeScript中src/server/models/task/TaskRepository.TaskRepository类的典型用法代码示例。如果您正苦于以下问题:TypeScript TaskRepository类的具体用法?TypeScript TaskRepository怎么用?TypeScript TaskRepository使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TaskRepository类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: create
create(req, res, next) {
this.taskRepository.create(req.body)
.onFulfill((task) => {
res.json(task);
}).onReject(next);
}
示例2: fetch
fetch(req, res, next, id) {
this.taskRepository.findById(id)
.onFulfill((task) => {
if(! task) {
next(new ModelNotFoundError());
}
req.task = task;
next();
}).onReject(next);
}
示例3: replace
replace(req, res, next) {
this.taskRepository.replace(req.story, req.body)
.onFulfill((story) => {
res.json(story);
}).onReject(next);
}
示例4: index
index(req, res, next) {
this.taskRepository.all()
.onFulfill((tasks) => {
res.json(tasks);
}).onReject(next);
}