我正在尝试使用http://www.livestream.com/userguide/?title=Mobile_API#Requesting_a_mobile_stream上的 livestream 非常有用的移动 api来发出 xml 请求。我感兴趣的是 isLive 响应值。我正在尝试使用这样的ajax请求
$.ajax({
type: "GET",
url: "http://xproshowcasex.channel-api.livestream-api.com/2.0/getstream",
datatype: "xml",
success: function(xml){
//this is where I need help. This is what I would like to happen
if (isLive == true) {
//perform action
}
else {
//perform other action
}
我正在使用http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/上的插件来进行跨域 xml 请求。谁能告诉我这是否是实现这一目标的最有效方法?我无法让它工作。当我运行console.log(xml)(这可能不对)时,JS控制台显示objectObject,我认为这意味着我需要解析数据?如果有人能花时间解释这一点,我会很高兴的。非常感谢。