- html标签可以在标签上写自定义属性,那么react的组件,也可以像传属性一项,给组件传props; react组件接收到传入的属性后,会自动塞进实例的props属性中,通过this.props可以拿到外部传入的属性 来看一下props的基本使用 <!DOCTYPE html> <html la Read More
posted @ 2022-08-22 22:32 古墩古墩 Views(78) Comments(0) Diggs(0) Edit
- class Car{ // 类中考科一直接写赋值语句,如下代码的含义是:给Car的实例对象添加一个属性,名为a,值为1 a = 1; b } console.log(Car); let c = new Car() console.log(c, 'c '); // Car {a: 1, b: un Read More
posted @ 2022-08-22 22:11 古墩古墩 Views(247) Comments(0) Diggs(0) Edit