Loads a JSON file to create an Object
.
JavaScript Object Notation (JSON) is a standard format for sending data between applications. The format is based on JavaScript objects which have keys and values. JSON files store data in an object with strings as keys. Values can be strings, numbers, Booleans, arrays, null
, or other objects.
The first parameter, path
, is always a string with the path to the file. Paths to local files should be relative, as in loadJSON('/assets/data.json')
. URLs such as 'https://example.com/data.json'
may be blocked due to browser security.
The second parameter, successCallback
, is optional. If a function is passed, as in loadJSON('/assets/data.json', handleData)
, then the handleData()
function will be called once the data loads. The object created from the JSON data will be passed to handleData()
as its only argument.
The third parameter, failureCallback
, is also optional. If a function is passed, as in loadJSON('/assets/data.json', handleData, handleFailure)
, then the handleFailure()
function will be called if an error occurs while loading. The Error
object will be passed to handleFailure()
as its only argument.
Note: Data can take time to load. Calling loadJSON()
within preload() ensures data loads before it's used in setup() or draw().
예제
구문
loadJSON(path, [successCallback], [errorCallback])
매개변수
path of the JSON file to be loaded.
function to call once the data is loaded. Will be passed the object.
function to call if the data fails to load. Will be passed an Error
event object.