Skip to content
Advertisement

Angular JS splice function not removing existing field in array

I am trying to use the splice() function in Angular JS. I have a dropdown from which users can select an item.

The selected item has a field and a value which gets parsed into the array ‘criteria’.

The user then clicks another item on the same drop down, and I want to make sure it checks to see if the field already exists. If it does, the code should remove the existing field and insert the new one.

There should only ever be one field name in this array.

Please note I have other drop down lists using the same criteria array so these should not be effected.

Example drop down list contains:

JavaScript

Currently if you click Apple, the criteria array populates correctly.

JavaScript

The second time you click on the SAME drop down, the Orange criteria array populates as follows:

JavaScript

I need the code to remove the original click item, as the field TypeName already exists in the array; e.g. the value Apple and Push/Replace with Orange into the criteria array

HTML – example drop down code that calls ng-click filterData function:

JavaScript
JavaScript

The first time I click the item my index is -1.
The second time I click an item my index seems to still be -1.

Console log output:

JavaScript

Advertisement

Answer

The question is not very clear but looking at your expected output I think the mistake is in line

var index = criteria.map(function(e) { return e.field; }).indexOf(field);

e.field should be e.Field. So, correct statement is:

var index = criteria.map(function(e) { return e.Field; }).indexOf(field);

further do not push to criteria inside else. Based on your expected output you always want to push. You just want to remove if anything is already there before pushing.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement