gpt4 book ai didi

struts2 - 从 Struts2 返回字符串结果类型

转载 作者:行者123 更新时间:2023-12-04 17:13:58 25 4
gpt4 key购买 nike

我想发送 String 作为对 AJAX xhrPOST 方法的响应。我正在使用 Struts2 来实现服务器端处理。但是,我不知道如何将结果“类型”作为字符串发送以及应该完成的映射以将字符串从 struts2 操作类发送到 AJAX 响应。

最佳答案

您可以让您的操作方法返回的不是字符串结果,而是 StreamResult 类型的结果。

换句话说:

class MyAction {

public StreamResult method() {
return new StreamResult(new ByteArrayInputStream("mystring".getBytes()));
}
}

您不一定必须从 Struts2 操作方法返回字符串。您始终可以从 xwork 返回 Result 接口(interface)的实现。

关于struts2 - 从 Struts2 返回字符串结果类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1251498/

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