0

grunt-contrib-htmlminを使用してHTML ファイルを縮小しようとしていParse Errorますcommand line

Running "htmlmin:dist" (htmlmin) task
Warning: template/applications/applications.html
Parse Error: <a class="btn btn-default" href="#" role="button" data-i18n="[title
]Reset_filter" , data-bind="click:function(){clearfilter('jqxgridApplications')}
"><i class="icon-reset-filter"></i></a>
                        <a class="btn btn-default" href="#" role="button" da
 ta-toggle="modal" data-target="#hideShowColumns" ,data-i18n="[title]show_hide" d
ata-bind="click: function () {openPopup('modelShowHideCol','jqxgridApplications'
)}"><i class="icon-hide-column"></i></a>
                        <a class="btn btn-default" href="#" role="button" da
ta-i18n="[title]exportToXls" data-bind="click:function(){exportToExcel(true,'jqx
gridApplications')}"><i class="icon-export-excel"></i></a>
                        <a class="btn btn-default" href="#" role="button" da
ta-i18n="[title]refresh_data" data-bind="click:function(){refreshGrid('jqxgridAp
plications')}"><i class="icon-spinner9"></i></a>

                    </div>
                </div>
            </div>

            <div class="row">
                <div class="col-md-12">
                    <div class="grid-area">
                        <div id="jqxgridApplications" style="width:100%">
                        </div>
                        <div id="pagerDivApplication"></div>
                    </div>
                </div>
            </div>

            <div class="modal fade bs-example-modal-lg" id="applicationModel
" data-backdrop="static" tabindex="-1" role="dialog" aria-labelledby="myModalLab
el" aria-hidden="true">
                <div data-bind="if: templateFlag">
                    <div data-bind='component:observableModelPopup'>

                    </div>
                </div>
            </div>

        </div>
    </div>
</div>
</div> Use --force to continue.

Aborted due to warnings.

エラーを使用--forceしても同じですか?どんな助けでも本当に感謝しています。

htmlmin以下は、タスクを定義した方法です。

htmlmin: {
dist: {
  files: [{
     expand: true,
     cwd: 'template',
     src: '**/*.html',
     dest: 'template_dist/'
   }]
 }
}
4

1 に答える 1

1

最初の 2 つのアンカー要素には、データ属性の間に余分なカンマがあります。1 つ目はdata-i18n属性の後にコンマがあり、2 つ目は の後にコンマがありますdata-target。カンマを削除して、解析エラーが解消されるかどうかを確認してください。

于 2015-06-23T23:21:41.607 に答える