JSONデータをドロップダウンリストに表示する必要があります.2つのオプションがあります.1つはng-repeatを使用し、もう1つはng-optionsです.
ng-リピートコード:
htmlファイルで:
<select>
<option ng-repeat="prod in testAccounts" value="{{prod.id}}">{{prod.name}}</option>
</select>
およびスクリプトファイルで:
$http.get('document.json').success(function (data)
{
$scope.testAccounts = angular.fromJson(data);
}
および他の 1 つの ng-options :
htmlファイルで:
<select ng-model="selectedTestAccount" ng-options="c as c.name for c in testAccounts1"></select>
スクリプト ファイル内:
$http.get('document.json').success(function (data)
{
$scope.testAccounts1 = data;
$scope.selectedTestAccount = $scope.testAccounts1[0];
}
今、パフォーマンスを改善するために私のプロジェクトに最適なものを知りたいです。ガイドラインを教えてください。