M
M
Max Developer2017-01-31 19:13:37
JSON
Max Developer, 2017-01-31 19:13:37

How to parse external json file? and whether additional manipulations with an array are necessary?

Как правильно парсить внешний json файл ?
я вот так пробовал codepen.io/valerondragan/pen/pRprWp
не получается

еще один вопрос : надо ли дополнительные манипуляции с массивом если он у меня вот в таком виде
[ { 'key' : ' val ' }, { 'key' : ' val ' }, ..., { 'key' : ' val ' } ] ?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Макс, 2017-02-01
@AloneCoder

var data = JSON.parse('[ {"key" : " val " }, { "key" : " val " }, { "key" : " val " } ]');
data.map(function(element) {
  alert(element['key']);
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question