如果在其他地方已經回答了這個問題,我表示歉意,但是我似乎無法讓我的思緒纏繞在這裏,並在幾小時後敲打我的腦袋,發佈時間。
我有一個來自Parse.com的項目的簡單列表來填充列表頁面。我想將列表項目超鏈接到特定於單個項目的詳細信息頁面;一個頁面查看有關該項目的所有細節。
我簡單的控制器(基本功能,着眼於我的服務連接到分析和自定義過濾器來過濾項目的頁面)
.controller('ProductCtrl',['$scope','$stateParams','Product',function($scope,$stateParams,Product) {
Product.getAll().success(function(data){
$scope.items=data.results;
});
$scope.filterFn = function(streetBreakfast)
{
return(streetBreakfast.segmentStreet === 1) && (streetBreakfast.productCategory === 'Breakfast');
};
}])
我的路線(減少簡潔)
.state('streetBreakfast', {
url: '/street/breakfast',
templateUrl: 'views/street-breakfast.html',
controller: 'ProductCtrl'
})
.state('streetBreakfastDetail', {
url: '/street/breakfast/:itemId',
templateUrl: 'views/street-breakfast-detail.html',
controller: function($scope, $stateParams) {
$scope.itemId = $stateParams.itemId;
}
})
我的HTML
<div class="row">
<div class="col-md-4">
<div class="col-img-page-2 street"></div>
</div>
<div class="col-md-6 col-md-offset-1">
<div class="row">
<div class="col-md-4" ng-repeat="item in items | filter:filterFn | orderBy:'productType'" style="padding: 0 0 20px 0">
<div style="width:100px; height: 100px; margin-bottom: 10px; background: #f7f7f7 url('../images/products/{{ item.productImage }}') no-repeat; background-size: contain"></div>
<strong>Item#: </strong><a ui-sref="streetBreakfastDetail">{{ item.itemName }}</a><br>
<strong>Type: </strong>{{ item.productType }}
</div>
</div>
</div>
</div>
我知道這應該是一個簡單的答案,但在這一點上,我只需要一隻手。感謝您的時間。
謝謝你,但我有沒有運氣。我經歷了大量的文檔,並改變了我的問題,以反映我根據我讀過的教程所做的事情....我的大腦即將爆炸:)通過查看新的更改,特別是路線;你有什麼想法?謝謝。 –
這是一個Plunk http://plnkr.co/edit/Ytx99gV4maAkEfc0oKiT?p=preview - 我沒有將它連接到我們的Parse帳戶,而是在控制器中設置了虛擬數據。基本上,它的工作原理就是它的工作方式/不在我的應用程序中 - 它將路由到詳細信息頁面,但不顯示任何詳細信息 –
查看ui-sref指令,您缺少狀態的參數: 'ui-sref =「streetBreakfastDetail({id:1})」'例如。 https://github.com/angular-ui/ui-router/wiki/Quick-Reference#ui-sref我現在正在寫電話,明天我會修改你的plunkr。 – jjimenez