Here's an example of an rss page. Firefox actually styles it, while the other browsers just display text. Click 'view source' on the page to see the actual xml. It's weird that they have so many redundant links, as each file is linked to three times: in the url attribute of the <enclosure>, <link> and <media:content> tags. I'm assuming this is to make it compatible with the format rss readers are expecting.
I figured that a good starting place for this problem would be trying to extract the mp3 url from each <enclosure> tag. This is where we started running into problems. Given an xml file looking like this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section> | |
<enclosure url="a" /> | |
<other_tag> | |
<enclosure url="b" /> | |
</other_tag> | |
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(xml).find("enclosure").each(function(i) { | |
console.log( i.attr('url') ); // -> TypeError: i.attr is not a function | |
}); |
0 1I was completely unprepared for that! I assumed that the i variable was more than just an integer, and the index was just being returned by #toString() method when logging to console. It turns out that what I really wanted was:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(xml).find("enclosure").each(function(i) { | |
console.log( $(this).attr('url') ); // note that I'm using $(this) and not i | |
}); |
a bthe "urls" I set in my xml.
Another interesting thing I found today:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $enclosure_search = $(xml).find("enclosure") | |
// different values for similar calls | |
$enclosure_search // -> Object { 0: <enclosure>, 1: <enclosure>, length: 2, prevObject: Object, context: undefined, selector: "enclosure" } | |
$enclosure_search[0] // -> <enclosure url="a"> | |
$($enclosure_search[0]) // -> Object { 0: <enclosure>, context: <enclosure>, length: 1 } | |
// Get the first enclosure tag explicitly - #attr() can no longer be called | |
$enclosure_search[0].attr('url') // -> TypeError: $enclosure_search[0].attr is not a function | |
// jQueryify the first_enclosure variable so that #attr() can be called on it | |
$($enclosure_search[0]).attr('url') // -> "a" |
I guess you can never have too much jQuery!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TODO: needs more jQuery | |
$( $(1)[0] + $(1 + 1)[0] + $(100).length ).first()[0] // -> 4 |
No comments:
Post a Comment