我无法从我的数据库中获取我的json数组,以在新行上显示数组中的每个句子。 Json code in MongoDB database
{
"_id" : ObjectId("5a9546659f96044402c2403a"),
"title" : "Asthma",
"description" : [
"1. Help the person sit in a comfortable position and help them take their medicine.",
"2. Reassure the person.",
"3. If the attack becomes severe, they dont have their medication or they dont improve call the emergency services."
],
"image" : "https://danu7.it.nuigalway.ie:8710/images/asthma.jpg"
}
我已经想办法做到这一点并尝试了一些无济于事。我希望句子打印出来如下。
目前这是我的代码handlebar file
{{#each tutorials}}
<center>
<img src={{image}}>
<br>{{description}}
</center>
{{/each}}
这就是它在我的网页output
上显示的方式任何帮助都将非常感谢!!!
答案 0 :(得分:0)
对我而言,您似乎一次打印整个description
数组。
因此,将<br>{{description}}
行改进为<br>{{#each description}}{{this}}<br>{{/each}}
,所有描述元素都将以新行打印。