您好,感謝您的幫助。我正在使用ember.js來創建一個基本站點。我有一個每個循環,其中我希望它顯示一個變量,同時鏈接到一個外部網站(例如,我已經存儲爲一個不同的變量的google.com)。Ember.js每個循環都帶有外部/外部鏈接
出於某種原因,當我在每個循環內部進行操作時,出現錯誤「此鏈接處於非活動加載狀態,因爲其至少一個參數目前具有空值/未定義值,或提供的路由名稱無效。「我似乎無法弄清楚如何在點擊時讓它進入外部網站。這裏是我的每個循環和示例json。
{{#each}}
{{#link-to 'theme' theme tagName="tr"}}
<td class="noWrap">{{#link-to 'theme' title}}{{title}}{{/link-to}}</td>
<td>{{#link-to 'theme' this}}<img {{bind-attr src="image"}} \>{{/link-to}}</td>
<td class="tdCenter"><a {{bind-attr href="link"}}>{{price}}</a></td>
<td>{{description}}</td>
<td class="tdCenter">{{columns}}</td>
{{/link-to}}
{{/each}}
{
id: 1,
title: 'Title',
price: '$10',
description: 'random description',
columns: 1,
link:'https://google.com',
image: 'images/image.jpg'
}
,這是我的主題路線
App.ThemeRoute = Ember.Route.extend({
model: function(params) {
return App.THEMES.findBy('title', params.title);
}
});
讓我知道如果您有任何意見。再次感謝!
大衛乙
第一個鏈接中的主題是什麼?應該是這樣嗎? –