您知道如何在控制器變量定義內使用動態/鏈接變量嗎?ctrl變量定義中的角動態(json鏈)變量
我創造了這個plnkr進一步地說明一下我試圖實現:http://plnkr.co/edit/xOjhf8b7ZIxVhc1Id3xo
在NodeCtrl,我想從一個JSON對象動態地訪問一個節點,我無法找到正確的語法寫出鏈條。
我已經嘗試了多種組合,但還沒有找到正確的路要走:
//var jsonChunk = "data." + $scope.transcendType;
$scope.tabinventory = data.$scope.transcendType;
//data;
//jsonChunk;
//function() { return "data." + $scope.transcendType; };
alert($tabinventory[0].title)
//alert($scope.tabinventory.project[0].title);
您可以提供任何幫助將不勝感激。
一切順利,
本
成功處理程序中的'data'是由您的JSON表示的對象。它沒有屬性'$ scope',也沒有任何屬性'transcendType',所以很難弄清楚你試圖得到什麼。另外演示從未定義函數'scope.getNodeByID'發出錯誤 – charlietfl
使用[]作爲我的「索引」是什麼引起我:http://plnkr.co/edit/2oHBuJUi1FWmiugy0nrr?p=preview –