gpt4 book ai didi

javascript - 如何将值从 grails 传递回 javascript 函数?

转载 作者:行者123 更新时间:2023-11-28 02:55:53 24 4
gpt4 key购买 nike

我有一种感觉,这个问题的答案很简单,但我似乎还不能得到它......

我有一个 Javascript 函数,它通过 RemoteFunction 调用 Groovy 类中的操作。现在,我需要将操作类中的值返回到 Javascript 函数以进行进一步处理。它看起来像这样:

// sample js function in the gsp file
function setPrev() {
...
var tmp = $remoteFunction(action: 'someaction', params: ...)
...
}

在 Controller 中,操作将如下所示:

def someaction = {
...
def retVal = Somedomain.anobject // 1:m relationship so there's a hasMany = [anobject...] in Somedomain
...
return retVal
}

现在,当它返回到 tmp 时,它是 [object object]。有没有办法让我至少获得 [anobject1, anobject2, ..., anobjectn] 作为 tmp 的值?我什至尝试过 json 但它仍然是 [object object]。

最佳答案

很简单

 return retVal as JSON

只要记住导入 org.grails.converters.JSON (我认为是这样)

关于javascript - 如何将值从 grails 传递回 javascript 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2673721/

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