在 Grails 上呈现 XML 响应问题
我在将通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你只想渲染 xml 文件,你可以说:
And There's no need for the slurper at all
If you just want to render the xml file you can say:
And there's no need for the slurper at all