それぞれがフロント アクスルまたはリア アクスルのいずれかの Type プロパティを持つ、axleTypes の選択リストがあります。「Front」と「Rear」の重複する単語を除外できないようです。
アップデート:
HTML:
<select ng-model="axleType.Type" ng-options="type for type in uniqueTypes">
コントローラ:
$scope.axleTypes = API.GetAxleTypes();
$scope.fixedAxleTypes = [
{ "$id": "1", "Description": "I beam, telescopic type shock absorbers", "Type": "Front", "Id": 1 },
{ "$id": "2", "Description": "Full-floating banjo housing", "Type": "Rear", "Id": 2 },
{ "$id": "3", "Description": "Something Else", "Type": "Rear", "Id": 2 },
{ "$id": "4", "Description": "I beam, telescopic type shock absorbers", "Type": "Front", "Id": 4 }
];
// This Works
$scope.uniqueTypes = _.uniq(_.pluck($scope.fixedAxleTypes, 'Type'));
// This does not
//$scope.uniqueTypes = _.uniq(_.pluck($scope.axleTypes, 'Type'));
// This does not
//$scope.uniqueTypes = _.uniq(_.pluck(API.GetAxleTypes(), 'Type'));
私は完全に混乱しています。そして、はい、API は動作します 。Chrome > Network>Response ウィンドウから上記のデータをコピーして貼り付けました。