İş Tecrubesi
Eğitim Geçmişi
Sertifikalar & Başarılar
Kullanıcıya ait test sonucu bulunmamaktadır.
Dil Becerileri
Son Forum Aktiviteleri
1Intel XDK Platformunda JSON verisini okumada eksiklik.
Merhabalar,
Intel'ın geliştirmekte olduğu Intel XDK programını kullanıyorum. Wordpress siteme JSONPress eklentisini yükleyerek, gönderilerimin JSON verisini almaktayım. Fakat alt JSON etiketlerinde ki veriyi nasıl alabileceğimi bilmiyorum? Yardımcı olabilir misiniz?
Örnek:
{"status" : "deneme", "posts" :
[
{
"post_content" : "Deneme yazısı"
}
]
Bu örnekte bulunan post_content değerini işleyince undefined değeri döndermekte. Ama status değerini olduğu gibi yazmakta. Kullandığım JSON scriptinin örneği ise;
[code]
<script>
//When DOM loaded we attach click event to button
$(document).ready(function() {
//after button is clicked we download the data
$('.button').click(function(){
//start ajax request
$.ajax({
url: "https://kendisitem.com/deneme-yazim/?json=1",
//force to handle it as text
dataType: "text",
success: function(data) {
//data downloaded so we call parseJSON function
//and pass downloaded data
var json = $.parseJSON(data);
//now json variable contains data in json format
//let's display a few items
$('#results').html('Plugin name: ' + json.status + '<br />Author: ' + json.post_content);
}
});
});
});
</script>
[/code]
Şimdiden teşekkür ederim.
Saygılarımla | Menderes Keskin