javascript - Ajax result is not an object -


My AJAX result is

  ["1", "O"]   

I'm trying to reach 1, but

  console.log (Results [0]);   

gives me

'['

How can I make it as an object and Can I already get the element of my array result?

Try it that you are listed in the string of your result

  var resultObj = JSON.parse (results); Console.log (resultsObj [0]);    

Comments

Popular posts from this blog

c++ - 'std::string' has no member named 'get' list[i]=user.get; -

python - how we can use ajax() in views.py in django? -

javascript - Is there any way to add a new parameter to a function programmatically? -