我有一个简单的对象文字,其地址如下所示
address: {
country: String,
state: String,
city: String,
zip: String,
street: String
}
和它里面的一个对象,我用express.js渲染函数。
在我的模板页面中,我正试图在这个对象中循环,如图所示:
<% for (var prop in artist.address ) { %>
<%- artist.address[prop] %>
<% } %>
输出数据但包含ejs函数,如下所示:
function () { return this.get(path); } function () { return this.get(path); } yafo 09988 jerusalem israel israeli [object Object] undefined undefined undefined undefined undefined undefined undefined undefined undefined undefined undefined undefined undefined undefined [object Object] [object Object] function () { var self = this , hookArgs // arguments eventually passed to the hook - are mutable , lastArg = arguments[arguments.length-1] , pres = this._pres[name] , posts = this._posts[name] , _total = pres.length , _current = -1 , _asyncsLeft = proto[name].numAsyncPres , _next = function () { if (arguments[0] instanceof Error) { return handleError(arguments[0]); } var _args = Array.prototype.slice.call(arguments) , currPre , preArgs; if (_args.length && !(arguments[0] == null && typeof lastArg ===
那我怎么需要迭代我的对象?
答案 0 :(得分:8)
除了&#34;拥有&#34;之外,您还可以看到所有继承的属性。您已添加到最顶层的属性。
有两种方法可以解决这个问题。一种方法是使用hasOwnProperty()
确保您不会看到继承的属性:
<% for (var prop in artist.address) {
if (Object.prototype.hasOwnProperty.call(artist.address, prop)) { %>
<%- artist.address[prop] %>
<% }
} %>
或者使用Object.keys()
返回一个仅包含非继承属性的数组并迭代它:
<% Object.keys(artist.address).forEach(function(prop) { %>
<%- artist.address[prop] %>
<% }); %>
由于这与mongoose相关,您也可以尝试迭代artist.address.toObject()
(使用公共API)或artist.address._doc
(使用私有API)或者artist
上的某个级别对象
答案 1 :(得分:6)
使用普通JS,您可以使用Object.keys
var obj = { 0: 'a', 1: 'b', 2: 'c' };
console.log(Object.keys(obj)); // console: ['0', '1', '2']
在你的例子中
var artist = { address: { city: 'Tel Aviv' } };
Object.keys(artist.address).forEach(function(key){
<%- artist.address[city] %> //key will city the output will be 'Tev Aviv'
});
另一种很酷的方法是使用lodash:lodash forEach
_([1, 2]).forEach(function(n) {
console.log(n);
}).value();
答案 2 :(得分:2)
好的,所以我潜入它这里是一个解释, 我有一个对象:
address : {
country: String,
state: String,
city: String,
zip: String,
street: String
}
我需要只显示那些属性而不是继承一次所以我遍历对象并获得了自己的属性:
<% Object.keys(artist.address).forEach(function(prop) { %>
// ["country" , "state" , "city" etc ]
<%- artist.address[prop] %> // so artist.address.state logs "New York City"
<% }); %>
但问题是我的artist.address
对象还有两个属性:
每个人都有一个带回报的函数。
function () { return this.get(path); } function () { return this.get(path); }
所以我检查了包含如此字符串的属性:
<% Object.keys(artist.address).forEach(function(prop) {
if( typeof artist.address[prop] == "string" ) { %>
<%- artist.address[prop] %>
<% } %>
<% }); %>