please help bring an array of data. spring is here :
{"news": [{"img": "http://static2.smi2.net/img/160x120/2212764.jpeg", "title": " 2 - 3 ! ", "url": "http://news.smi2.ru/newdata/news?ad=681120&bl=81060&ct=adpreview&st=16&in=lJUrBQDHL4CgZAoA", "id": "681120"}]}
I do the following:
var massive = JSON.parse('http://news.smi2.ru/data/js/81060.js');
console.log(massive.news.id);
console.log(massive.news.img);
console.log(massive.news.title);
console.log(massive.news.url);
As a result, you receive the following error message:
Uncaught SyntaxError: Unexpected h token
use only native js
source
share