2016-05-24 25 views
0

はもともと私のindex.htmlは、このように見えました!

私は外部edit.htmlファイルにその部分を分離し、第thymeleafsでそれをincludet:私のindex.htmlに置き換えます。

<div th:replace="fragments/editor :: editor(binding='data-bind=\'attr: {id: \'newsEntry_\'+ $parentContext.$index() +\'_lead_\' + $index() + \'_toolbar\'}\'')" >...</div> 

断片/ editor.html:

<div th:fragment="editor(binding)"> 
    <div th:attr="${binding}">...</div> 
</div> 

をIこのエラーが出る:

org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as assignation sequence: "${binding}" (fragments/editor:9)

データバインドがknockout.jsから結合されます。

私はエラーが」のescpaingで何かだと思う '\'

答えて

0

私はそれだ:

のindex.html:

<div th:replace="fragments/editor :: editor(binding='attr:{ id: \'newsEntry_\'+ $parentContext.$index() +\'_lead_\' + $index() + \'_toolbar\'}')" >...</div> 

editor.html:

<div th:fragment="editor(binding)"> 
    <div th:attr="data-bind=${binding}"></div> 
</div> 
関連する問題