1
我使用的Grails Sitemesh Content Blocks修飾頁面與Grails的2.2.2Angularjs使用Grails <content>標籤
問題是角無法識別通過的sitemesh提供的HTML標籤<content>
所以每一個變量我想該標籤中的顯示不顯示。
例如
<div ng-app="myApp" ng-controller="myController">
<span>{{some.variable}}</span>// works
<content>
<span>{{some.variable}}</span>// DONT WORKS!! (not displaying)
</content>
</div>
有沒有辦法告訴角度識別<content>
標籤? 或任何我應該做的,以使其工作。
謝謝
也許與此處相同的問題http://stackoverflow.com/questions/21481780/error-initializing-groovypageview ?noredirect = 1#comment32424270_21481780 –
我沒有錯誤..我不認爲這是相同的問題。 – Merlin
嘗試刪除Angular特定代碼,我認爲這個問題與Angular沒有關聯。只需測試它沒有角度。 – emilan