javascript - Displaying sub-array in ng-repeat - Stack Overflow

Inmy Angular app I have the following <select> element that is populated like so:HTML<select

In my Angular app I have the following <select> element that is populated like so:

HTML

<select name="device[ [[$index]] ]" ng-model="selectedModel" ng-change="loadModelImage(selectedModel)">
    <option value="">Model</option>
    <option ng-repeat="model in manufacturerModels" value="[[model.id]]">[[model.model]]</option>
</select>

JS

$scope.manufacturerModels = $filter('filter')($scope.models, {manufacturer_id: manufacturerId});

The above AngularJS snippet will return a JSON response of handset models stored in the API. (I'd post an example here but each object is quite lengthy).

Anyway, inside each 'model' is a sub-array of variants -- objects containing colours and memory sizes available for that device.

eg:

{
    model: "iPhone 6",
    manufacturer: "Apple",
    variants: [
        {
            color: "space grey",
            memory: "128GB"
        }
        {
            color: "gold",
            memory: "16GB"
        }
        {
            color: "space grey",
            memory: "64GB"
        }
    ]
}

The Goal

I'd like to know if it's possible (and if so, how) to populate the model dropdown's <option>'s with the variants in the name. So where it currently says [[model.model]] (.model being the name), I need each option to say something like: "iPhone 6 space grey 128GB"

PS. Angular interpolation temp. changed to [[ ]] due to the same pages using mustachePHP.

In my Angular app I have the following <select> element that is populated like so:

HTML

<select name="device[ [[$index]] ]" ng-model="selectedModel" ng-change="loadModelImage(selectedModel)">
    <option value="">Model</option>
    <option ng-repeat="model in manufacturerModels" value="[[model.id]]">[[model.model]]</option>
</select>

JS

$scope.manufacturerModels = $filter('filter')($scope.models, {manufacturer_id: manufacturerId});

The above AngularJS snippet will return a JSON response of handset models stored in the API. (I'd post an example here but each object is quite lengthy).

Anyway, inside each 'model' is a sub-array of variants -- objects containing colours and memory sizes available for that device.

eg:

{
    model: "iPhone 6",
    manufacturer: "Apple",
    variants: [
        {
            color: "space grey",
            memory: "128GB"
        }
        {
            color: "gold",
            memory: "16GB"
        }
        {
            color: "space grey",
            memory: "64GB"
        }
    ]
}

The Goal

I'd like to know if it's possible (and if so, how) to populate the model dropdown's <option>'s with the variants in the name. So where it currently says [[model.model]] (.model being the name), I need each option to say something like: "iPhone 6 space grey 128GB"

PS. Angular interpolation temp. changed to [[ ]] due to the same pages using mustachePHP.

Share Improve this question asked Nov 16, 2014 at 13:49 leaksterrrleaksterrr 4,1667 gold badges36 silver badges69 bronze badges 1
  • Do you want a list that shows all model + variants binations? If that's the case, you need to flatten your list before using it in the ng-repeat. – Joao Leal Commented Nov 19, 2014 at 14:38
Add a ment  | 

3 Answers 3

Reset to default 10 +50

I'm not sure I understand your question, but you can divide the models in optgroups and then have an option for each variant within each model:

<select>
        <option value="">Model</option>
        <optgroup ng-repeat="model in data" label="{{model.model}}">
          <option ng-repeat="variant in model.variants" value="{{model}}">{{ model.model + '-' + variant.color }}</option>
        </optgroup>
</select>

Please see this plunkr: http://plnkr.co/edit/rPNaGXEi0m9rvNkzQuBJ?p=preview

Alternatively, you have to flatten your array:

$scope.flatten = function(){
      var out = [];
      angular.forEach($scope.data, function(d){
        angular.forEach(d.variants, function(v){
          out.push({model: d.model, variant: v.color})
        })
      })
      return out;
    }

And then you can use ngSelect:

<select ng-model="myColor" ng-options="model.variant group by model.model for model in flatten()">
   <option value=""> -- select -- </option>
</select>

Here's the updated Plnkr: http://plnkr.co/edit/rPNaGXEi0m9rvNkzQuBJ?p=preview

This may not be the answer you're looking for, but AngularJS is always pushing you to work with view-models, meaning models tailored for the views.

Your example with the models & its nested variants is not a model which is tailored for the view you're trying to present, and so I would suggest creating a new model based on your current model.

This new model would have one entry per model per variant, and would be flat so that a single ng-repeat would easily iterate over them. You could even add a watch statement to "manufacturerModels", so that you can be sure the new model you create for the options ng-repeat is always up to date.

Another option, which would work with what you're trying to do would be to create a simple directive, which only copies its inner html without its tags, for example:

<noTags>someHtml</noTags> --> someHtml

I'll leave it to you to write this directive, as its fairly simple.

Then, to solve your problem you'd simply need to write a nested ng-repeat statement, something like this:

<select name="device[ [[$index]] ]" ng-model="selectedModel" ng-change="loadModelImage(selectedModel)">
    <option value="">Model</option>
    <noTags ng-repeat="model in manufacturerModels">
        <option ng-repeat="varient in model.varients" value="[[model.id]]">[[model.model]] [[varient.color]] [[varient.memory]]</option>
    </noTags>
</select>

The rendered html should simply provide a long list of option tags which have all the options you want.

You need to use the 'ngOptions' directive for that purpose. https://docs.angularjs/api/ng/directive/select The directive can take either an array of options or a hash (object) of options. And omit the 'ngRepeat' within 'option'.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743633833a4481815.html

相关推荐

  • javascript - Displaying sub-array in ng-repeat - Stack Overflow

    Inmy Angular app I have the following <select> element that is populated like so:HTML<select

    19小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信