Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 grails 控制器,其最后一行是
render results as JSON
它正在渲染到 iframe。当 firefox 处理这个时,它会尝试下载 json 文件。这是正常的吗?我能够解决这个问题的唯一方法是将其转换为字符串,然后在 javascript 端处理它。
我有一个 grails 控制器,我在其中编写了类似这样的内容,并且收到了 String 消息。试试这个例子。
String msg = g.message(code: "default.errors.login.fail") render([error: msg] as JSON)