Mustache.js - 知道列表是否只有一个项目
目前,当我遇到作者的显示时,我正在循环使用小胡子。
{{#authors}}{{.}}, {{/authors}} //loop through each author names in authors array
问题是末尾的逗号。我更喜欢不受影响的数据(来自服务器的 JSON)。 Mustache 有没有办法知道您是否处于最后一次迭代(并且不附加逗号)或知道您是否处于第一次迭代(并且不附加逗号)
currently i'm looping through using mustache when i came across the display of authors..
{{#authors}}{{.}}, {{/authors}} //loop through each author names in authors array
the issue is the comma at the end. i prefer the data (JSON from server) untouched. is there a way in mustache to know if you are in the last iteration (and not append a comma) or know if you are in the first iteration (and not prepend a comma)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
未测试!
概述:为除名字之外的所有名称添加前缀“,”。
模板:
初始化:
查看:
Not tested!
Overview: add a prefix of ", " for all but the first name.
Template:
Initialize:
View: