在基于Angular的Ionic项目中,自定义类型export interface Item{...};然后在page页面里面定义变量,就会提示Property 'xx' has no initializer and is not definitely assigned in the constructor,如果放在 constructor中不会报错,但不是我想要的,如果是在page类里面的定义变量,就会报错,后来找到解决的方法,就是用item!:Item;,之前使用item:Item,差别在于多了‘!’,这样就不会报错了