这是我的 html 页面中的一段 jquery 代码
$.ajax({
url: 'userlist.php',
type: 'post',
data: 'id='+extr,
success: function(results){
$("#uservidshow").text("Page Title: "+$(results).find("vidlist").attr("title"));
//$("#uservidshow").text(results);
$(results).find("vids").each(function(){
$("#uservidshow").append("<br/><br/>Video Name: "+$(this).attr("vtitle")+"<br/>Link: "+$(this).attr("link")+"<br/>Description: "+$(this).find("descr").text()+"<br/><br/>");
});
}
});
--- 这是在 div#uservidshow 中显示的输出 ---
页面标题:未定义
视频名称:儿童视频
链接:http ://www.youtube.com/watch?v=PIchX1LX0
描述:
我的问题是:
为什么我会得到“未定义”的页面标题?
为什么我在描述下得到一个空白而不是显示 cdata 内容?
--- 这是来自 userlist.php 的一段代码 ---
<?php
$getid=$_POST['id'];
....
[few lines of code]
....
$pickfrmtab= mysql_query("SELECT * FROM mytable WHERE userid='$getid'");
if(mysql_num_rows($pickfrmtab)==1){
while($row = mysql_fetch_array($pickfrmtab)){
echo htmlspecialchars_decode($row['pagecontent'], ENT_QUOTES); //'pagecontent' contains my xml string
}
}else{
echo "Unable to get PLAYLIST";
}
?>
--- 这是存储在数据库中列名“pagecontent”下的 XML 字符串---
<?xml version='1.0' encoding='UTF-8' ?><vidlist title='My Fav Videos'>
<vids link='http://www.youtube.com/watch?v=PIchX1LX0' vtitle='Kids video'>
<descr><![CDATA[this is nice]]></descr>
</vids>
<comment allow='no'></comment>
</vidlist>
正如您可能已经猜到的那样,我已经将 htmlspecialchars() 应用于实际的 xml 字符串,然后再将其插入数据库
$xmldata="<?xml version='1.0' encoding='UTF-8' ?>".$_POST['actualxmlstrng'];
$xmldata_safe=htmlspecialchars($xmldata, ENT_QUOTES);
//inserted $xmldata_safe into the datacbase field 'pagecontent' SUCCESSFULLY
只是给你一个想法,这是$xmldata在应用 htmlspecialchars 之前的样子:
<?xml version='1.0' encoding='UTF-8' ?>
<vidlist title='My Fav Videos'>
<vids link='http://www.youtube.com/watch?v=PIchX1LX0' vtitle='Kids video'>
<descr><![CDATA[this is nice]]></descr>
</vids>
<comment allow='no'></comment>
</vidlist>