引用回调和this.mount-reactJS

Joe*_*ugh 2 three.js reactjs

我正在阅读该问题的最佳答案。

如何将Threejs连接到React?

有人提供了在react中使用threejs的一个很好的例子:

import React, { Component } from 'react'
import * as THREE from 'three'

class Scene extends Component {
constructor(props) {
super(props)

this.start = this.start.bind(this)
this.stop = this.stop.bind(this)
this.animate = this.animate.bind(this)
}

componentDidMount() {
const width = this.mount.clientWidth
const height = this.mount.clientHeight

const scene = new THREE.Scene()
const camera = new THREE.PerspectiveCamera(
  75,
  width / height,
  0.1,
  1000
)
const renderer = new THREE.WebGLRenderer({ antialias: true })
const geometry = new THREE.BoxGeometry(1, 1, 1)
const material = new THREE.MeshBasicMaterial({ color: '#433F81' })
const cube = new THREE.Mesh(geometry, material)

camera.position.z = 4
scene.add(cube)
renderer.setClearColor('#000000')
renderer.setSize(width, height)

this.scene = scene
this.camera = camera
this.renderer = renderer
this.material = material
this.cube = cube

this.mount.appendChild(this.renderer.domElement)
this.start()
}

componentWillUnmount() {
this.stop()
this.mount.removeChild(this.renderer.domElement)
}

start() {
if (!this.frameId) {
  this.frameId = requestAnimationFrame(this.animate)
}
}

stop() {
  cancelAnimationFrame(this.frameId)
}

animate() {
this.cube.rotation.x += 0.01
this.cube.rotation.y += 0.01

this.renderScene()
this.frameId = window.requestAnimationFrame(this.animate)
}

renderScene() {
  this.renderer.render(this.scene, this.camera)
}

render() {
return (
  <div
    style={{ width: '400px', height: '400px' }}
    ref={(mount) => { this.mount = mount }}
  />
)
}
}

export default Scene
Run Code Online (Sandbox Code Playgroud)

我不明白this.mount。什么this.mount啊 它似乎用于访问客户端宽度和客户端高度。ref回调函数ref={(mount) => { this.mount = mount }}在做什么?

我进行了一些研究,发现在组件挂载后调用了ref回调,它们可用于将状态从父级传递给子级,但是仅在必要时使用。我从文档中得到了所有这些。

我计划出于自己的目的修改此脚本,因此理解this.mount和ref回调将非常有帮助。TIA

acd*_*ior 5

检查文档-React Refs和DOM(重点是我的):

refHTML元素上使用该属性时,ref回调将接收基础DOM元素作为其参数

所以在:

  render() {
    return (
      <div
        style={{ width: '400px', height: '400px' }}
        ref={(mount) => { this.mount = mount }}
      />
    )
  }
Run Code Online (Sandbox Code Playgroud)

this.mount将保留对实际<div>安装组件的引用。

重要的是要注意,this.mount只有安装组件之后,该组件才会存在。这就是为什么所有使用的逻辑this.mount 都在内部componentDidMount()或之后的原因,只有在安装组件之后才触发该逻辑:

componentDidMount()挂载组件后立即调用。需要DOM节点的初始化应在此处进行。如果需要从远程端点加载数据,这是实例化网络请求的好地方。