是否可以在htmlbars中使用等价的扩展运算符?
let items = ['hello', 'world'];
someFunction(...items); // equivalent to someFunction('hello', 'world');
我需要在htmlbars
中使用它{{link-to 'some.route' ...items}}
答案 0 :(得分:1)
不,这不可能是afaik。我相信这个PR请求试图实现它:https://github.com/wycats/handlebars.js/pull/1149。不幸的是,它的开发似乎并不活跃。