0
我使用的是angular 1.5和laravel 5.3,我有一個控制器,它包含一個questions數組,並且我也將這個數組傳遞給視圖。 我試圖做的是:試圖在刀片模板引擎內使用angular 1.5變量
<div ng-if="questions.length > 0">
<md-card ng-repeat="question in questions">
<md-card-content>
<h4><% question.title %></h4>
<p ng-bind-html="renderHtml(question.content)"></p>
<p>{{ $questions['<% question.id %>']->created_at->diffForHumans() }}</p>
</md-card-content>
</md-card>
</div>
但它像刀片引擎無法得到<%question.id%>值。 順便說一句,我從{{}}更改爲< %%>。 感謝
您對此有何看法?刀片服務器端編譯。在Angular在客戶端編譯之前。 – estus