Answer the question
In order to leave comments, you need to log in
How to use import?
Хочу использовать JSONPath на фронтэнде.
Скачал jsonpath.min.js, подключил его в index.html (нужно ли это?).
В файле со скриптом (index.js) есть json'ы к которым я хочу обращаться при помощи jsonpath.
Может нужно его как-то импортировать?
Как мне его подключить и использовать? В Readme.md приведен пример только для node.js
Подскажите, с меня как всегда
Answer the question
In order to leave comments, you need to log in
Downloaded jsonpath.min.js, included it in index.html (is it necessary?).
jsonpath
- refer to it:var cities = [
{ name: "London", "population": 8615246 },
{ name: "Berlin", "population": 3517424 },
{ name: "Madrid", "population": 3165235 },
{ name: "Rome", "population": 2870528 }
];
var jp = jsonpath; // для краткости
var names = jp.query(cities, '$..name');
console.log(names); // [ "London", "Berlin", "Madrid", "Rome" ]
FiddleDidn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question