我有一個包含src元素的角度中繼器(表格)。然而,我的網址被稱爲加載的項目前的第一次,造成一個404的負載是這樣的:沒有項目的中繼器中的角度加載img src
http://localhost:9000/%7B%7Bitem.obj.thumbnailurl%7D%7D 404 (Not Found)
表看起來像這樣(簡化):
<table>
<thead>
<tr>
<th>Item title</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in items">
<td>{{item.obj.itemtitle}}</td>
<td>
<a href="{{item.obj.landingpageurl}}">
<img src="{{item.obj.thumbnailurl}}"/>
</a>
</td>
</tr>
</thead>
</table>
的項目陣列稍後加載,作爲搜索的結果。
每次我打開這個視圖(即使沒有頁面重新加載,只是打開其他視圖),我會得到404錯誤。
這是爲什麼發生?我怎樣才能避免它?
嘗試使用'ng-src'。 – AlwaysALearner
謝謝你們,所有非常有幫助的答案。 – Zlatko