我有这个HTML代码:
<tr class="gris">
<td width="6%" class="titulo"><a href="{{ Here goes some URL}}"><img src="assets/play_icon.png" width="32" height="32" /></a></td>
<td width="60%" class="titulo"><a href="{{ Here goes some URL }}">{{ Here goes some title }}</a> <span></br>Descripción de la Pista o Podcast</span></td>
<td width="17%" class="fecha">{{ Here goes some date}}</td>
<td width="17%" class="tiempo">{{ Here goes some time}}</td>
</tr>
我有一个返回JSON的PHP代码:
{ "html_content" : [ { "description" : "Esta es una prueba de grabacion del podcast",
"date" : "20130927",
"hour" : "012100",
"id" : "-317498614",
"repro" : "0",
"title" : "Prueba",
"url" : "rtmp://46.4.158.7/kraa13/_definst_/kraa13/prueba1.flv"
},
{ "description" : "260913",
"date" : "20130926",
"hour" : "192600",
"id" : "-317498614",
"repro" : "0",
"title" : "260913",
"url" : "rtmp://127.0.0.1/kraa13/_definst_/kraa13-317498614/260913.flv"
}
],
"response" : true
}
我应该能够生成与JSON上的值一样多的TR
,当然也可以替换生成的TR
中的正确值。例如,对于每个迭代,在示例代码中我有{{ Here goes some URL }}
我应该从JSON响应中写出url
值。
更新
我试过这段代码:
$(function() {
window.setInterval(function() {
var request = $.ajax({
type: 'GET',
url: "http://devserver/reader/podcast/podcast.php",
success: function(data) {
$("#podlist").html();
if (data.response === false) {
$("#podlist").html(data.error);
} else {
console.log(data.html_content);
if (data.html_content.length != 0) {
var htm = null;
for (var i in data.html_content) {
var jsonObj = data.html_content[i];
htm += "<tr class='gris'><td width='6%' class='titulo'><a href='" + jsonObj.url + "'><img src='assets/play_icon.png' width='32' height='32' /></a></td><td width='60%' class='titulo'><a href='" + jsonObj.url + "'>" + jsonObj.title + "</a> <span></br>" + jsonObj.description + "</span></td><td width='17%' class='fecha'>" + jsonObj.date + "</td><td width='17%' class='tiempo'>" + jsonObj.hour + "</td></tr>";
}
$("#podlist").append(htm);
}
}
},
error: function() {
request.abort();
}
});
}, 5000);
});
但是我收到了这个错误:
TypeError: data.html_content is undefined
if (data.html_content.length != 0) {
答案 0 :(得分:1)
您可以尝试获取表元素,清除它的内部HTML,然后在$ .each循环中为您的响应(它是一个列表)追加所需的行。如果“行”计数是动态的,并且只有在异步请求之后才知道它,这是最好的方法。
答案 1 :(得分:1)
希望您使用 AJAX 动态地讨论“从JSON结果更新HTML内容”,我提出了以下解决方案。只需在AJAX的成功回调中编写此代码:
if(responseData.html_content.length != 0) {
var htm = null;
for(var i in responseData.html_content) {
var jsonObj = responseData.html_content[i];
htm += "<tr class='gris'><td width='6%' class='titulo'><a href='"+jsonObj.url+"'><img src='assets/play_icon.png' width='32' height='32' /></a></td><td width='60%' class='titulo'><a href='"+jsonObj.url+"'>"+jsonObj.title+"</a> <span></br>"+jsonObj.description+"</span></td><td width='17%' class='fecha'>"+jsonObj.date+"</td><td width='17%' class='tiempo'>"+jsonObj.hour+"</td></tr>";
}
$("#table-id").append(htm);
}
希望这有帮助!
答案 2 :(得分:0)
只需使用
var myhtml = '<tr class="gris"><td width="6%" class="titulo"><a href="{{ Here goes some URL}}"<img src="assets/play_icon.png" width="32" height="32" /></a></td><td width="60%" class="titulo"><a href="{{ Here goes some URL }}">{{ Here goes some title }</a><span></br>Descripción de la Pista o Podcast</span></td><td width="17%" class="fecha">{{ Here goes some date}}</td><td width="17%" class="tiempo">{{ Here goes some time}}</td></tr>';
$.each(the_data,function(i , v) {
$('.titulo a' , myhtml).attr('href' , v.url);
// and so on
$('.conatiner').append(myhtml);
})
答案 3 :(得分:0)
它与此格式类似。你必须稍微努力一下。 :)
$.post('test.php', { id: id },
function (page) {
$('.titulo a' , myhtml).attr('href' , page.html_content..url);
$('.conatiner').append(page.html_content.data);
}, 'json');
从这里检查答案.. How get parametrs from json?
答案 4 :(得分:0)
简单的解决方案是将模板维护为
var template = '<tr class="gris">'+
'<td width="6%" class="titulo"><a href="{{ Here goes some URL}}"><img src="assets/play_icon.png" width="32" height="32" /></a></td>'+
'<td width="60%" class="titulo"><a href="{{ Here goes some URL }}">{{ Here goes some title }}</a> <span></br>Descripción de la Pista o Podcast</span></td>'+
'<td width="17%" class="fecha">{{ Here goes some date}}</td>'+
'<td width="17%" class="tiempo">{{ Here goes some time}}</td>'+
'</tr>';
var jstring = jQuery.parseJSON(jsonString);
var htmlContent = jstring.html_content;
var i=0;
var t =template;
for(;i<htmlContent.length;i++){
t = t.replace("{{ Here goes some URL}}", htmlContent[i].url);
//Similarly do for the other values...
jQuery("table").append(jQuery(t));
t=template;
}
答案 5 :(得分:-2)
尝试
的console.log(数据);
Ajax调用是否返回数据?
f12并设置一个断点或使用&#34; net&#34;在您选择的浏览器中选择面板,以查看您的Ajax调用回来的内容。