简体   繁体   中英

How to get array from JSON format in Javascript?

I have something like this...

["a","b","c"]

I got it from PHP array using json_decode(). I'm very weak in JavaScript, but I need to get array in Javascript, so I can use it with jQuery UI -> Autocomplete like this...

source: [ 'a', 'b', 'c' ]

Is it possible to do with only Javascript or you need to have some Javascript library to use JSON?

but I need to get array in Javascript, so I can use it with jQuery UI -> Autocomplete

Check out jQuery.parseJSON function.

Hey, You can do it only with javascript:

var arrayToUse = ["a","b","c"];

JSON stands for Javascript Object Notation and it is a standard notation for javascript objects. You do not need any special library to use it. Example,

If you want to create an object in javascript you would do something like:

var person = {
 name : 'somename',
source : arrayToUse
};

This is a javascript object in JSON notation

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