题外话:vscode有个插件可以很方便的快速写代码
输入rcc回车
import React, { Component } from 'react'
class Navbar extends Component{
render(){
return Navbar
}
}
const Swiper=()=>{
return Swiper
}
const Tabbar=()=>{
return Tabbar
}
export default class App extends Component {
render() {
return (
)
}
}
如果想要继续嵌套 比如在NavBar组件中加入其它组件
正确的做法
既然你说在Navbar组件里面 那就去这个组件里面加
import React, { Component } from 'react'
export default class StyleApp extends Component {
render() {
var name="zhangsan";
return (
1+2
{1+2}
{10>20? name:'lisi'}
)
}
}
引入变量 执行表达式运算 使用{ }括起来
当我们给div加style样式的时候,一般我们是
样式
但是放在react这里会报错
The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.
“style”道具需要从样式属性到值的映射,而不是字符串。例如,当使用JSX时,style={{marginRight:spaceing+'em'}}。
也就是说我们需要使用{{ }} 或者 定义个对象传入
import React, { Component } from 'react'
export default class StyleApp extends Component {
render() {
var name="zhangsan";
var style2={
background:"blue"
}
return (
1+2
{1+2}
{10>20? name:'lisi'}
样式1
样式2
)
}
}
也可以引入自己写的css文件 就在js中引入 不要去html引入 不会热加载
.active{
background-color: rgb(0, 255, 98);
}
可以将class改为className
总结两种方式:
1.行内样式
// 注意这里的两个括号,第一个表示我们在要JSX里插入JS了,第二个是对象的括号
Hello world
2.使用class
React推荐我们使用行内样式,因为React觉得每一个组件都是一个独立的整体
其实我们大多数情况下还是大量的在为元素添加类名,但是需要注意的是, class 需要写成 className (因为毕竟是在写类js代码,会收到js规则的现在,而 class 是关键字)
采用on+事件名的方式来绑定一个事件,注意,这里和原生的事件是有区别的,原生的事件全是小写 onclick , React里的事件是驼峰 onClick ,React的事件并不是原生事件,而是合成事件。
onClick onMouseOver .......
1.直接在render里写行内的箭头函数(不推荐)
2.在组件内使用箭头函数定义一个方法(推荐)
3.直接在组件内定义一个非箭头函数的方法,然后在render里直接使用 onClick= {this.handleClick.bind(this)} (不推荐)
4.直接在组件内定义一个非箭头函数的方法,然后在constructor里bind(this)(推荐)
bind(this) 修正this指向
import React, { Component } from 'react'
export default class BindAPP extends Component {
render() {
return (
事件绑定
//不推荐
//不推荐
)
}
handler1(){
console.log("开始111");
}
handler2=()=>{
console.log("开始222");
}
handler3=()=>{
console.log("开始333");
}
}
注意:前面两种不要自作主张this.handler加括号 this.handler() 错误错误!!!!!
如果this.handler()会自动执行 由于该方法里面没有写返回值 导致执行一次之后就是undefined
导致onclick点击是没反应的
和普通浏览器一样,事件handler会被自动传入一个 event 对象,这个对象和普通的浏览器 event 对 象所包含的方法和属性都基本一致。不同的是 React中的 event 对象并不是浏览器提供的,而是它自 己内部所构建的。它同样具有 event.stopPropagation 、 event.preventDefault 这种常用的方法。
通过这个获取this.refs.username , ref可以获取到应用的真实dom
所以获取输入框的值可以 this.refs.username.value
React.createRef()
export default class BindAPP extends Component {
myref=React.createRef();
render() {
return (
事件绑定
)
}
}
input对象在current 因此 可以通过 this.myref.current.value 获取输入框的值
状态就是组件描述某种显示情况的数据,由组件自己设置和更改,也就是说由组件自己维护,使用状态 的目的就是为了在不同的状态下使组件的显示不同(自己管理)
错误写法:一般我们会想到定义一个变量 然后使用这个变量 然后点击按钮触发 修改这个变量的值
import React, { Component } from 'react'
export default class App extends Component {
render() {
var text="收藏";
return (
欢迎来到react世界
)
}
}
前台显示我们会发现并没有起作用
需要使用state状态 和setState
import React, { Component } from 'react'
export default class App extends Component {
state={
text:"收藏"
}
render() {
// var text="收藏";
return (
欢迎来到react世界
)
}
}
import React, { Component } from 'react'
export default class App extends Component {
state={
myshow:true
}
render() {
// var text="收藏";
return (
欢迎来到react世界
)
}
}
另一种写法constructor()
import React, { Component } from 'react'
export default class App extends Component {
// state={
// myshow:true
// }
constructor(){
super();
this.state={
myshow:true
}
}
render() {
// var text="收藏";
return (
欢迎来到react世界
)
}
}
import React, { Component } from 'react'
export default class App extends Component {
state={
list:["111","222","333"]
}
render() {
return (
{
this.state.list.map(item=>- {item}
)
}
)
}
}
成功渲染列表 但是会有一个警告 在列表中的每一个孩子应该有一个不同的key属性
设置key的原因是让react精准知道操作哪个
为了列表的复用和重排,设置key值,提高性能
理想的key是独一无二的 一般设置为对象中的id
import React, { Component } from 'react'
export default class App extends Component {
state={
// list:["111","222","333"]
list:[
{
id:1,
text:"111"
},
{
id:2,
text:"222"
},
{
id:3,
text:"333"
},
]
}
render() {
return (
{
this.state.list.map(item=>
- {item.text}
)
}
)
}
}
当然,如果只是为了将列表进行渲染显示,不需要进行增删,可以使用index
import React, { Component } from 'react'
export default class App extends Component {
state={
// list:["111","222","333"]
list:[
{
id:1,
text:"111"
},
{
id:2,
text:"222"
},
{
id:3,
text:"333"
},
]
}
render() {
return (
{
this.state.list.map((item,index)=>
- {item.text}-----{index}
)
}
)
}
}
import React, { Component } from 'react'
export default class App extends Component {
constructor() {
super();
this.state = {
addList: [
{
id: Date.parse(new Date()), title: "张三"
}
]
}
}
myref = React.createRef();
render() {
return (
{
this.state.addList.map((item) =>
- {item.id}----{item.title}
)
}
)
}
handler = () => {
let newList = [...this.state.addList]
newList.push(
{
id: Date.parse(new Date()),
title: this.myref.current.value
}
)
this.setState({
addList: newList
})
}
}
import React, { Component } from 'react'
export default class App extends Component {
constructor() {
super();
this.state = {
addList: [
{
id: Math.random()*10000, title: "张三"
}
]
}
}
myref = React.createRef();
render() {
return (
{
this.state.addList.map((item,index) =>
-
{item.id}----{item.title}
)
}
)
}
handler = () => {
let newList = [...this.state.addList]
newList.push(
{
id: Math.random()*10000,
title: this.myref.current.value
}
)
this.setState({
addList: newList
})
}
deleteList=(index)=>{
console.log(index);
let newList = [...this.state.addList];
newList.splice(index,1);//从该下标开始删除 删除一个
this.setState({
addList: newList
})
}
}
优化:
1.输入框输入后,点击按钮, 应该自动清空输入框的值,避免每次重新输入还需要删;
this.myref.current.value=""
2.删除到一个都不剩的时候,一片空白,应该显示一个空空如也;
如果为空就..........................
条件渲染
{this.state.addList.length==0 ?
换种写法:(推荐)
{this.state.addList.length===0 && 暂无待办事项}
条件为真就显示渲染 为假就移除
意思就是输入框中如果输入的是富文本,需要输出并解析
dangerouslySetInnerHTML顾名思义,危险的设置html
固定写法{__html:} 注意是双下划线
{/* {item.id}----{item.title} */}
import React, { Component } from 'react'
export default class App extends Component {
constructor() {
super();
this.state = {
addList: [
{
id: Math.random()*10000, title: "张三"
}
]
}
}
myref = React.createRef();
render() {
return (
{
this.state.addList.map((item,index) =>
-
{/* {item.id}----{item.title} */}
)
}
{/* {this.state.addList.length===0 ?暂无待办事项:null} */}
{this.state.addList.length===0 && 暂无待办事项}
)
}
handler = () => {
let newList = [...this.state.addList]
newList.push(
{
id: Math.random()*10000,
title: this.myref.current.value
}
)
this.setState({
addList: newList
})
this.myref.current.value=""
}
deleteList=(index)=>{
console.log(index);
let newList = [...this.state.addList];
newList.splice(index,1);//从该下标开始删除 删除一个
this.setState({
addList: newList
})
}
}