@Result Annotation中的Param属性用法

时间:2017-12-19 12:09:59

标签: java json struts2 struts2-convention-plugin

如何在@Result Annotation中指定要转换为JSON的变量?

现在它将所有带有getter的变量转换为JSON String。

如何在@Result中使用params属性?

@Action(value = "save", results = { @Result(name = "success", type = "json") })

1 个答案:

答案 0 :(得分:0)

我认为这应该有效:

// Numbers

typeof 37 === 'number';
typeof 3.14 === 'number';

// Strings
typeof 'bla' === 'string';

// Booleans
typeof true === 'boolean';

// use Array.isArray or Object.prototype.toString.call
// to differentiate regular objects from arrays
typeof [1, 2, 4] === 'object';