gpt4 book ai didi

node.js - 无法获取列表中显示的对象数组

转载 作者:太空宇宙 更新时间:2023-11-04 02:19:02 25 4
gpt4 key购买 nike

我只是发布这样的数组 {pods: ["abc", "pqr", "xyz"]}到后端。当我在索引页上调用它时,它显示如下 abc,pqr,xyz 。但我真正希望的是每个都使用 <h5> 出现在列表中标签。像这样

 abc
pqr
xyz

但是当我应用循环时只会给我这样的结果:

a
b
c
p
..

我的代码如下:

Mongoose 架构:

var schema = mongoose.Schema({
pods: String})

索引.ejs

<% plates.forEach(function(plate){ %>
<% var arr = plate.pods %>
<% for (i = 0; i < arr.length; i++) { %>
<h5> <%= arr[i] %> </h5>
<% } %>
<% }) %>

最佳答案

你应该尝试

var schema = mongoose.Schema({ pods: [String] });

查看

关于node.js - 无法获取列表中显示的对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34317296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com