验证篇章 — 使用
最后更新于:2022-04-02 08:10:54
>[success] # 使用
~~~
1.因为'validatorOf' 是一个'Promise' 对象,因此使用的使用 是用'then','catch'
形式
~~~
~~~
import 'reflect-metadata'
import MyPerson from '../src/model/module/MyPerson'
const myPerson = new MyPerson()
myPerson.name = ''
myPerson.validatorOf('name').then(res=>{
console.log(res)
}).catch(e=>{
console.log(e)
})
~~~
';