gpt4 book ai didi

handlebars.js - 限制字符长度以显示在带有 Handlebars 的 jquery 表中

转载 作者:行者123 更新时间:2023-12-04 07:37:27 26 4
gpt4 key购买 nike

我如何限制字符显示在我的 jqurty 表中,该表从 Handlerbars.Compile

填充
Handlebars.compile('<tr><td>{{productDescription}}</td></tr>')

我只想显示前 10 个字符并显示 ... 如果用户单击它应该调用显示整个产品描述的 jqueryui 对话框。

最佳答案

使用 Handlebars 助手:

Handlebars.registerHelper('dotdotdot', function(str) {
if (str.length > 10)
return str.substring(0,10) + '...';
return str;
});

之后,在你的模板中写入

{{dotdotdot productDescription}}

关于handlebars.js - 限制字符长度以显示在带有 Handlebars 的 jquery 表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18261107/

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