1

我啜饮了一个 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=&quot;http://twitter.com/Star_babey&quot;>@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: []

任何帮助表示赞赏

4

1 回答 1

1

我不认为不需要元编程,你应该能够做到:

imageUrlList = new XmlSlurper().parse( response.data ).entry.link.findAll { it.@rel == 'image' }*.@href

那么这应该为您留下每个位置的字符串列表......

您是否将整个 XmlSlurper 传递回 GSP?我可能只是提取您需要的数据并仅将其发回

于 2011-01-28T10:26:40.450 回答