我啜饮了一个 twitter 提要,其中每个条目看起来像:
<entry>
<id>tag:search.twitter.com,2005:30481912300568576</id>
<published>2011-01-27T04:27:08Z</published>
<link type="text/html" rel="alternate" href="http://twitter.com/LadyCourtz/statuses/30481912300568576"/>
<title>U always right. ml</title>
<content type="html">U always right. T <a href="http://twitter.com/Star_babey">@Star_babey</a>: But its only <b>twitter</b> tho star u wilding...lml</content>
<updated>2011-01-27T04:27:08Z</updated>
<link type="image/png" rel="image" href="http://a2.twimg.com/profile_images/1221429153/248287865_normal.jpg"/>
等等等等
我在 grails/GSP 中需要做的是显示图像, <img src=${tweet.imgUrl}/>
所以这看起来是对 XML 结果进行元编程的一个很好的案例,但作为 Groovy nooby,我遇到了麻烦。
看看至少有 2 个“链接”节点,图片 url 有一个rel="image"
属性。所以我试过...
def records = new XmlSlurper().parse(response.data)
records.entry.metaClass.imgUrl = { -> return delegate.link?.find{it?.@rel == 'image'}?.@href }
但是像这样的错误我无法超越:
groovy.lang.MissingMethodException: No signature of method: groovy.util.slurpersupport.NodeChild.shout() is applicable for argument types: () values: []
任何帮助表示赞赏