这是我的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
为了给你一个想法,这就是在应用htmlspecialchars之前 $ xmldata 的样子:
<?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>
答案 0 :(得分:0)
您没有正确发布数据
使用此代码
$.ajax({
url: 'userlist.php',
type: 'post',
data: {'id=': extr},
dataType: "xml",
.....
或者您可以使用
$.ajax({
type: 'GET',
url: 'userlist.php?id='+extr,
dataType: "xml",
.....