useRef&useContent的用法
  1. useRef
  2. useContent

1. useRef的用法

不仅可以用于DIV还可以用于各种数据

    function App(){
       const nRef = React.useRef(0)
       return (
           <div>
               <p>
                  {nRef.current}
                   // 此时的nrf是不会更新到视图的
                   <button onClick={()=>({nRef.current+1})}>add</button>
               </p>
           </div>
      )
  }

强制更新(推荐)

    function App(){
       const nRef = React.useRef(0)
       const update = React.useEffect()[1]
       const add = ()=>{
           return ((nRef.current++),update(nRef.current++))
      }
       return (
           <div>
               <p>
                  {nRef.current}
                   // 此时的nrf是不会更新到视图的
                   <button onClick={add}>add</button>
               </p>
           </div>
      )
  }

1. useContent的用法

    
   
   
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇