2

這是我使用來獲得圖像的代碼:這個角碼有什麼問題?

<img ng-src="{{url}}{{product.image}}" class="product-image"> 

,但它不會獲取圖像。

它只獲取文件路徑而不是產品圖像名稱。

回答

3

正確的語法應該是

<img ng-src="{{url + product.image}}" class="product-image"> 
+0

我仍然得到相同的文件路徑 –

+0

@RyanByrne你能否更新你的問題,你得到什麼錯誤以及你的期望是什麼.. –

1

我認爲你缺少了 「/」 與URL /圖像與SRC代替NG-SRC嘗試

<img src="{{url}}/{{product.image}}" class="product-image"> 
+0

我試過了,但現在我得到的路徑是:mydomain.com/xxx/cms/api/uploads/" –

0

你tryed以顯示控制變量url和product.image的結果?

console.log(url + product.image); 

值是正確的?