本文整理匯總了TypeScript中express.Application.engine方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Application.engine方法的具體用法?TypeScript Application.engine怎麽用?TypeScript Application.engine使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類express.Application
的用法示例。
在下文中一共展示了Application.engine方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: async
export default async (app: Application) => {
if (config.database) {
mongoose.connect(
config.database.params.connection_string,
{
useNewUrlParser: true,
},
);
}
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
if (config.sessions) {
app.use(clientSessions(config.sessions));
}
if (config.templates) {
app.engine(config.templates.type, (await import(config.templates.type)).default.__express);
app.set("view engine", config.templates.type);
}
if (config.pages) {
config.pages.forEach((pageConfig: IPage) => {
app.get(pageConfig.route, (_req: IRequest, res: Response) => {
// req.headers
if (pageConfig.template) {
res.render(pageConfig.template, pageConfig.parameters);
} else {
res.status(200).json(pageConfig.parameters);
}
});
});
}
if (config.static) {
app.use(expressStatic(`__dirname${config.static}`));
}
if (config.collections) {
config.collections.forEach((schema: ISchema) => {
const modelSchema = model(schema);
app.get(`/${schema.name}`, async (_req: IRequest, res: Response) =>
res.status(200).json(await modelSchema.find()),
);
app.get(`/${schema.name}/:id`, async (req: IRequest, res: Response) => {
try {
res.status(200).json(await modelSchema.findOne({_id: req.params.id}));
} catch (err) {
res.status(404).json({error: "Not Found"});
}
});
app.post(`/${schema.name}`, async (req: IRequest, res: Response) => {
try {
const newModel = new modelSchema(req.body);
await newModel.save();
res.status(201).json(newModel);
} catch (err) {
res.status(400).json({error: err.message});
}
});
/*
app.put(`/${schema.name}/:id`, async (req: IRequest, res: Response) => {
//
});
app.patch(`/${schema.name}/:id`, async (req: IRequest, res: Response) => {
//
});
app.delete(`/${schema.name}/:id`, (req: IRequest, res: Response) => {
//
});
*/
});
}
/*if (config.auth) {
config.auth.forEach((authConfig: IAuthConfig) => {
//
});
}*/
};