在 Grails 上呈现 XML 响应问题

发布于 2024-08-17 16:13:23 字数 204 浏览 5 评论 0原文

我在将通过 XMLSlurper 解析的 XML 文件呈现为 XML 变量时遇到问题。 下面是我的代码。

def userFile =new File("test.xml") def xml= new XmlSlurper().parse(userFile)

render xml

问题是我看不到 xml 被渲染到我的 Flex 应用程序中。

I'm having problems rendering an XML file parsed via XMLSlurper to an XML variable.
Below is my code.

def userFile =new File("test.xml")
def xml= new XmlSlurper().parse(userFile)

render xml

The problem is I cannot see the xml being rendered into my flex app.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷心人i 2024-08-24 16:13:23

如果你只想渲染 xml 文件,你可以说:

    def xmlFile = new File("test.xml")
    response.contentType = "text/xml"
    response.outputStream << xmlFile.text

And There's no need for the slurper at all

If you just want to render the xml file you can say:

    def xmlFile = new File("test.xml")
    response.contentType = "text/xml"
    response.outputStream << xmlFile.text

And there's no need for the slurper at all

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文