javascript mw.js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript mw.js相关的知识,希望对你有一定的参考价值。
app.get('/test/product/*', [
getProduct(req, res, next), // populates req.locals.productResponse
(req, res, next) => {
req.locals.context['product-details-feature'].layout = 'product';
if (req.locals.productResponse) {
req.locals.context['product-details-feature'].partial = 'product-details-feature/main';
next();
} else {
req.locals.context['product-details-feature'].partial = 'product-details-feature/product-not-found';
res.sendStatus(500);
}
req.locals.context['product-details-feature'].uiBootstrap = JSON.stringify(Object.assign({ properties }, req.locals.productResponse || {}));
}
]);
以上是关于javascript mw.js的主要内容,如果未能解决你的问题,请参考以下文章