gpt4 book ai didi

grails - grails从 Controller 返回xml字符串

转载 作者:行者123 更新时间:2023-12-02 15:36:10 25 4
gpt4 key购买 nike

在游戏应用中,我们使用grails进行所有服务端互动。在一种情况下,我们想从服务器保存和检索游戏状态。
我假设将在Unity 3D中使用的游戏应用程序将从其下载的应用程序发出url请求,而 Controller 反过来将仅返回xml String。
以下代码是否足够?
某些数据如何在调用此请求的游戏应用程序中不得到反射(reflect)。虽然我们可以看到正确调用了url。

render outxml
return false

最佳答案

这对我有用:

def search(String property, String value) {
def c = Stmt.createCriteria()
def xml = c.list {like property, "%$value%"}
render(text: xml.stm[0], contentType: "text/xml", encoding: "UTF-8")

然后这样调用:
http://localhost:8080/search?property=account&value=876543291&description=test&entries=20

关于grails - grails从 Controller 返回xml字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10072421/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com