Cảm ơn giải pháp của Ben, trường hợp sử dụng của tôi chỉ hiển thị các trường cụ thể theo thứ tự
với đối tượng
Mã số:
handlebars.registerHelper('eachToDisplayProperty', function(context, toDisplays, options) {
var ret = "";
var toDisplayKeyList = toDisplays.split(",");
for(var i = 0; i < toDisplayKeyList.length; i++) {
toDisplayKey = toDisplayKeyList[i];
if(context[toDisplayKey]) {
ret = ret + options.fn({
property : toDisplayKey,
value : context[toDisplayKey]
});
}
}
return ret;
});
Đối tượng nguồn:
{ locationDesc:"abc", name:"ghi", description:"def", four:"you wont see this"}
Bản mẫu:
{{#eachToDisplayProperty this "locationDesc,description,name"}}
<div>
{{property}} --- {{value}}
</div>
{{/eachToDisplayProperty}}
Đầu ra:
locationDesc --- abc
description --- def
name --- ghi