当前位置: 首页 > 工具软件 > Handlebars > 使用案例 >

handlebars.js

孙永嘉
2023-12-01
//显示值:
{
  {name}}

//数组取值
{
  {images.[0]}}

//转义html
{
  {
  {content}}}

//if
{
  {#if name}}{
  {name}}{
  {/if}}

//循环
{
  {#each newList}}
{
  {this}}
{
  {name}}
{
  {/each}}

//自定义函数
Handlebars.registerHelper('timestampToTime', function(timestamp){
                    var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
                    var Y = date.getFullYear();
                    var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) ;
                    var D = (date.getDate() < 10 ? '0'+date.getDate() : date.getDate()) ;
                    var h = (date.getHours() < 10 ? '0'+date.getHours() : date.getHours()) ;
                    var m = (date.getMinutes() < 10 ? '0'+date.getMinutes() : date.getMinutes());
                    var s = (date.
 类似资料:

相关阅读

相关文章

相关问答