首頁  >  問答  >  主體

使用React Query進行數據發布

<p>我正在學習React Query,並嘗試使用它來發布資料。 </p> <p>我能夠使用React Query獲取數據,但是我無法使用它來發布數據。我的問題是是否可以使用React Query來發布數據,以及如何做到。 </p> <p>謝謝 :)</p>
P粉821808309P粉821808309444 天前474

全部回覆(1)我來回復

  • P粉323050780

    P粉3230507802023-08-26 00:07:28

    這是一個React Query mutation的快速範例

    const mutation = useMutation({
       mutationFn: (newTodo) => {
         return axios.post('/todos', newTodo)
       },
     })
    

    React Query - Mutations 文件

    #

    回覆
    0
  • 取消回覆