1.代码
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val0, leftNone, rightNone):
# self.val val
# self.left left
# self.right right
class Solution:def rightSideView(self, root: Optional[TreeNode…
父传子:直接通过prop子组件标签身上绑定父组件中的数据即可子传父:在子组件标签身上绑定父组件中的函数,子组件中调用这个函数传递参数总结:思想保持一致;类组件依赖于this
import { Component } from react;
class …