gpt4 book ai didi

json - 在 struts 的 json 中仅传输类中的部分属性

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

对不起,我真的不知道如何总结这个问题的标题。所以,标题可能不清楚。

我有一个执行一些业务逻辑的操作类。

在 Action 类中:

class ActionClass extends ActionSupport{
private Merchandise merchandise;// I want to transfer it to the client
//setter and getter

}

在商品类中:
class Merchandise{
private String name; // I want to transfer it
private String price; //I don't want to transfer it
private String description;//I don't want to transfer it
//setter and getter
}

现在,我需要将 ActionClass 中的商品属性传输到客户端。

但是,在商品属性中,我只想传递名称属性,同时抑制其他两个属性。

那么如何禁止类 Merchandise 中其他两个属性(price 和 description)的转移呢?

最佳答案

尝试类似:

<!-- Result fragment -->
<result type="json">
<param name="root">merchandise</param>
<param name="excludeProperties">price,description</param>
</result>

请参阅 http://struts.apache.org/2.2.3/docs/json-plugin.html 处的完整文档、其他选项和示例。

关于json - 在 struts 的 json 中仅传输类中的部分属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6922247/

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