如何在@Result Annotation中指定要转换为JSON的变量?
现在它将所有带有getter的变量转换为JSON String。
如何在@Result中使用params属性?
@Action(value = "save", results = { @Result(name = "success", type = "json") })
答案 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';