嗨,我是 Twitpic API 的新手。我想调用 TwitPic API
http://api.twitpic.com/2/tags/show.xml?tag= " + searchq + "&page=1"
我想使用 AJAX 来实现,我当前的代码如下:
<script type="text/javascript">
var searchq = 'first';
$(document).ready(function () {
$("#btnGetData").click(function () {
$.ajax({
type: "GET",
/* define url of xml file to parse */
url: "http://api.twitpic.com/2/tags/show.xml?tag=" + searchq + "&page=1",
/* assign it a data type */
dataType: "xml",
/* state name of function to run if file is successfully parsed */
success: parseXml
});
});
});
function parseXml(xml)
/* this is where the xml file is parsed and converted into a HTML output */
{
//for each item node in the xml file
$(xml).find("image").each(function () {
//print the following html, inserting the relevant data within the nodes of item
//this is the heading
$("#tweets").append($(this).attr("id") + "<br />");
$("#tweets").append($(this).attr("short_id") + "<br />");
$("#tweets").append($(this).attr("type") + "<br />");
$("#tweets").append($(this).attr("timestamp") + "<br />");
});
//end for each
//end function
}
</script>
我的 HTML 如下所示:
<body>
<input id="btnGetData" type="button" value="Twitter Get Tweets" />
<div id="tweets">
</div>
我没有收到任何错误,但没有调用此 API。我想解析从此 API 返回的 XML。如果您可以为我提供解析 Twitpic API XML 的演示代码,那将是非常有帮助的。
提前致谢; 阿布舍克·A·夏尔马