简体   繁体   中英

Why an object key's first value is treated as a string - AngularJs

I have an object named as "param" and it has a key named as "item[]". The values of item[] are inserted dynamically.

Problem is when "item[]" has a single value, it treats that value as a string and not as first index of array.

Example :

item[]="123";

but when it has multiple values then it treats itself as an array which is desired, example-

item[] = ["123","456"];

I want the single value also as index of this array like

item[] = ["123"]

How would I do it ?

PS - This object is created from querystring parameters like http://example.com/def?item[]=123&item[]=456 , then when I extract querystring, it returns these parameters as the keys of an object

I am extracting querystring in this way(Javascript)-

var param = $location.search();
console.log('Param');      
console.log(param);//Returns Object{item[]=[2]} in console

This is because variableName[] is not a javascript syntax.
Since it does not recognise the [], it is probably part of the name if it does not throw an error.

To create an array, you have 2 possibilities :

//Contsructor
var ar = new Array(); //empty array
//Literal
var ar = []; //same as above
var ar = [0,1,2,3]; //array of length 4
var ar = new Array(4); //empty array of length 4

to access or set it

var ar[0] = "value"

Try this

queryString = ["123"];
queryString = ["123","432","456"];
if(queryString.length==1){
   item.push(queryString[0]);
}else{
  angular.forEach(queryString,function(value,key){
       item.push(value);//push only value
  })
}

I have solved it -

if(typeof param['item[]'] == "string"){
    param['item[]'] = [param['item[]']];
}

First I am checking if the key has a string value, if it is string then I am converting it into an array and it worked.

Here is the working fiddle -

https://jsfiddle.net/r3vrxzup/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM