1. 属性声明方式:
public
公有,默认,可以在这个类里面使用,也可以在类外面使用
protected
保护类型,只有在当前类和它的子类里可以访问
private
私有,只有在当前类才可以访问这个属性
2. 属性声明
推荐声明属性的写法:
public student:string ='雷雷'
public student:any='18'
其他写法:
student ='雷雷
public student='雷雷'
3. 声明一个对象
public userinfo:object {
name :'Alan',
age: 18
}
4. 声明一个数组
public arrlist :any[] ={
'hello',
'123',
'world',
}
public arrlist=['sss',''sseere','serwees']
public arrlist:Array<any>=['d','123','sdfwe1']
public arrlist:Array<string>=['sss','www','eee','qqq']
5. 绑定数据
// html 文件
{{student}}
6. 绑定数据
// html 文件
{{userinfo.name}}
的年龄是{{userinfo.age}}
7. 只声明属性,赋值在函数或者构造函数中赋值
* 在函数或者构造函数中赋值,变量前面要用this
public message any;
constructor(){
this.message='this action can change the property content'
}
网友评论