尝试检查 mootools 中是否存在 youtube 视频时出错
我有这个代码
var x = 'http://gdata.youtube.com/feeds/api/videos/FLE2htv9oxc';
var myJSONP = new Request.JSONP({
url: x,
callbackKey: 'jsoncallback',
data: ({ partTag: is_youtube }),
onRequest: function (url) {
// a script tag is created with a src attribute equal to url
},
onComplete: function (data) {
// the request was completed.
alert("ok");
}
}).send();
,我试图验证 youtube 视频是否存在 我一直
缺少这个错误;声明之前 [中断此错误] ...ount='193' viewCount='19488'/>
呃.. 我做错了什么 有没有办法以其他方式验证网址
i have this code
var x = 'http://gdata.youtube.com/feeds/api/videos/FLE2htv9oxc';
var myJSONP = new Request.JSONP({
url: x,
callbackKey: 'jsoncallback',
data: ({ partTag: is_youtube }),
onRequest: function (url) {
// a script tag is created with a src attribute equal to url
},
onComplete: function (data) {
// the request was completed.
alert("ok");
}
}).send();
and i trying to validate if youtube video exist
i keep getting this error
missing ; before statement
[Break On This Error] ...ount='193' viewCount='19488'/>
arrr..
what am i doing wrong
and is there a way to validate the url in any other way
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要告诉它使用 v2 和 jsonp。就目前情况而言,它返回 xml...
http://jsfiddle.net/ZD9Y6/ 证明。
参考资料
http://code.google.com /apis/youtube/2.0/reference.html#Video_Feeds
http://code.google.com/apis/youtube/2.0/developers_guide_json.html
you need to tell it to use v2 and jsonp. as it stands, it returns xml...
http://jsfiddle.net/ZD9Y6/ proof.
references
http://code.google.com/apis/youtube/2.0/reference.html#Video_Feeds
http://code.google.com/apis/youtube/2.0/developers_guide_json.html