我想知道是否可以删除我的把手模板值只返回一个值,尽管我正在路由我的sql调用。基本上我的路由是查询我的一个表(表:图像)的所有记录,同时包括第二个表,其中有一个记录关联(表:描述),所有记录都被查询。因此,每当我在页面中尝试这个对象时,我只能使用一个记录表(table:description)的属性作为循环,它显示的值与显示图像的次数一样多。车把是否有办法将其限制为仅一个值?
以下是我当前如何显示这一个记录表属性:
{{#image}}
<h3>{{this.description.body}}</h3>
{{/image}}
这是我的路线:
router.get('/:pattern/:color/result', function(req, res, image){
console.log(req.params.color);
console.log(req.params.pattern);
db.Images.findAll({
where: {
pattern: req.params.pattern,
color: req.params.color
},
include: [{ model: db.Description, attributes: ['body']}],
attributes: ['id', 'pattern', 'color', 'imageUrl', 'imageSource', 'description_id', 'description.body']
}).then(function(image){
//console.log(doc.descriptions_id);
res.render('pages/result.hbs', {
pattern : req.params.pattern,
color : req.params.color,
image : image
})
});
});
这是我的观点文件:
<div class="container">
<div class="row pattern-choice">
<div class="col-md-12">
<h2><i>What to wear</i></h2>
{{#image}}
<h3>{{this.description.body}}</h3>
{{/image}}
</div>
</div>
<div class="row pattern-choice">
<div class="col-md-12">
<h2><i>Inspiration</i></h2>
</div>
</div>
<div class="row">
{{#each image}}
<div class="col-lg-3 col-md-4 col-xs-6 thumb inspiration-image">
<ul>
<li>
<div class="image-placeholder">
<a href="{{ this.imageUrl }}" data-toggle="lightbox"><img class="img-responsive img-rounded" src="{{ this.imageUrl }}"></a>
</div>
<p><i>({{this.imageSource}})</i></p>
</li>
</ul>
</div>
{{/each}}
</div>
<div class="row">
<h3 class="button-choice"><a href="/" class="button-link" id="link-restart">TRY ON SOME MORE</a></h3>
</div>
</div>
答案 0 :(得分:0)
有关使用把手访问数组元素,请参阅this question。这是一个例子:
<div class="col-md-12">
<h2><i>What to wear</i></h2>
<h3>{{image.[0].description.body}}</h3>
</div>
此外,您可能希望将limit
option与您的包含查询一起使用。