本文整理汇总了TypeScript中restify.Next类的典型用法代码示例。如果您正苦于以下问题:TypeScript Next类的具体用法?TypeScript Next怎么用?TypeScript Next使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Next类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: function
return function (req:Request, res:Response, next:Next) {
var auth = (req as {authorization?:IAuthorization}).authorization;
if (auth && authBasic(auth.basic)) {
return next();
} else {
return next(new NotAuthorizedError());
}
}
开发者ID:giautm,项目名称:zeroth,代码行数:8,代码来源:auth.ts
示例2: getSingle
export function getSingle(req: Request, res: Response, next: Next): void {
const id = parseInt(req.params.id);
if (id) {
const customer = customers.find(c => c.id === id);
if (customer) {
res.send(customer);
next();
} else {
next(new NotFoundError());
}
} else {
next(new BadRequestError('Parameter id must be a number'));
}
}
开发者ID:,项目名称:,代码行数:14,代码来源:
示例3: deleteSingle
export function deleteSingle(req: Request, res: Response, next: Next): void {
const id = parseInt(req.params.id);
if (id) {
const customerIndex = customers.findIndex(c => c.id === id);
if (customerIndex !== (-1)) {
customers.splice(customerIndex, 1);
res.send(NO_CONTENT);
next();
} else {
next(new NotFoundError());
}
} else {
next(new BadRequestError('Parameter id must be a number'));
}
}
开发者ID:,项目名称:,代码行数:15,代码来源:
示例4: post
export function post(req: Request, res: Response, next: Next): void {
if (!req.body.id || !req.body.firstName || !req.body.lastName) {
next(new BadRequestError('Missing mandatory member(s)'));
} else {
const newCustomerId = parseInt(req.body.id);
if (!newCustomerId) {
next(new BadRequestError('ID has to be a numeric value'));
} else {
const newCustomer: ICustomer = { id: newCustomerId,
firstName: req.body.firstName, lastName: req.body.lastName };
customers.push(newCustomer);
res.send(CREATED, newCustomer, {Location: `${req.path()}/${req.body.id}`});
}
}
}
开发者ID:,项目名称:,代码行数:15,代码来源:
示例5: getAll
export function getAll(req: Request, res: Response, next: Next): void {
res.send(customers);
next();
}
开发者ID:,项目名称:,代码行数:4,代码来源:
注:本文中的restify.Next类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论