2013-08-06 4 views

답변

2

은 당신이 뭔가를 할 수 있습니다 :

var banner = '/**\n' + 
    ' * YourProject.js - v<%= pkg.version %> - build <%= grunt.template.today("yyyy-mm-dd HH:mm:ss") %>\n' + 
    ' * Contributors: <%= pkg.contributors.join(", ") %>\n' + 
    ' * Copyright (c) 2013 Your Name; Licensed MIT\n' + 
    ' */\n'; 

Array.join를 사용하여 배열을 반복 할 필요가 없다.

+0

아 멋지고 우아합니다. – iancrowther

+0

나를 위해이 항목은 "Contributors : [object Object]"를 출력합니다. – dude

0

이것은 내가 생각해 낸 것입니다. 치료를합니다.

var contributors = grunt.template.process('<% _.forEach(contributors, function(contributor) { %>\n * <%= contributor.name %> <<%= contributor.email %>><% }); %>', {data{'contributors': pkg.contributers}});