An dieser Stelle habe ich zwei Dinge zu verstehen.
import json
j = {
"employee":
[
{"id": 111,"name": "John"},
{"id": 222,"name": "Elle"}
]
}
print(j)
a = json.dumps(j)
print(json.dumps(a))
with open('test.json','w') as f:
json.dump(j,f)
with open('test.json','r') as f:
print(json.load(f)) #Lesen und schreiben Sie die Ausgabedatei in die Datei.
Abrufen von Seitenelementen mit Ajax.
$.ajax({
url: "./information.json",
dataType: "json"
})
.done(function(json){
var idx = 0;
var $info = $(".info__list .item");
$info.find("time").text(json[idx].date);
$info.find("p").text(json[idx].value);
setInterval(function(){
if(idx === json.length -1){
idx = 0;
} else {
idx = idx + 1;
}
$info.css("opacity",0);
setTimeout(function(){
$info.find("time").text(json[idx].date);
$info.find("p").text(json[idx].value);
$info.css("opacity",1);
},500);
},5000)
});
Es scheint, dass Sie die Informationen der Webseite von einem Dritten namens Anfragen erhalten können. Überprüfen wir auch den Code zum Abrufen von JavaScript-Informationen.
Recommended Posts