跳到主要内容

3.16.0 更新

· 阅读需 1 分钟
export class DemoController {
@mapping({ method: 'POST' })
typecast(body: BodyHelper) {
return body.get({
kw: 'trim',
news: {
// 嵌套对象 news
// 嵌套用法与 get({}) 用法一致,可以无限嵌套
type: {
id: '!int',
title: '!string',
}
}
});
}
}