第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

無(wú)效的鉤子調(diào)用 - useContext - React Hooks

無(wú)效的鉤子調(diào)用 - useContext - React Hooks

12345678_0001 2023-10-14 16:59:38
當(dāng)我在函數(shù)中使用 useContext 時(shí),出現(xiàn)錯(cuò)誤 invalid hooks call。請(qǐng)找到下面的代碼。并提出解決方案。import React from 'react';import { AddlistContext } from '@contexts';const asyncCall = (value) => {  const context = React.useContext(AddlistContext);  console.log(value, context);  return '';};這是在validation.js中使用上下文的代碼請(qǐng)幫幫我,我非常需要幫助。提前致謝
查看完整描述

1 回答

?
慕姐8265434

TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊

您的 ValueRequired 不是組件,或者至少您沒(méi)有將其用作組件。目前,您將其作為普通函數(shù)調(diào)用。

我知道函數(shù)和 React 函數(shù)組件之間存在很多混淆,因?yàn)楹笳咚坪踔皇且粋€(gè)函數(shù)。要?jiǎng)?chuàng)建組件,首先需要一個(gè)命名函數(shù),匿名函數(shù)不能是組件,且首字母大寫。但最重要的是,你需要以一種讓 React 渲染它的方式調(diào)用它,否則你無(wú)法使用像鉤子或上下文這樣的 React 功能。

為了使 ValueRequired 不引發(fā)錯(cuò)誤,您需要像這樣調(diào)用它:

//?Somewhere?in?you're?render?function
<ValueRequired?/>

但這并不能解決你的問(wèn)題。在你的情況下,我認(rèn)為你應(yīng)該使用鉤子模式,因?yàn)樗鼈兛梢栽L問(wèn)上下文:

  1. 創(chuàng)建 useValueRequired 函數(shù)

  2. 在您的應(yīng)用程序或管理表單的組件中調(diào)用它

嘗試這樣的事情:

const useValueRequired = () => {

? ? const context = React.useContext(AddlistContext);


? ? isRequired = value => {

? ? ? ? if (!value) {

? ? ? ? ? ? return "value is required";

? ? ? ? }

? ? }

? ??

? ? return {

? ? ? ? isRequired,

? ? };

}


const App = () => {

? ? // ...

? ? const { isRequired } = useValueRequired();

? ?

? ? // ...

? ? <Controller

? ? ? ? render={(props) => {

? ? ? ? ? ? return (

? ? ? ? ? ? ? ? <TextField

? ? ? ? ? ? ? ? ? ? variant="outlined"

? ? ? ? ? ? ? ? ? ? label="name"

? ? ? ? ? ? ? ? ? ? fullWidth

? ? ? ? ? ? ? ? ? ? {...props}

? ? ? ? ? ? ? ? ? ? error={errors?.name}

? ? ? ? ? ? ? ? ? ? helperText={errors?.name?.message}

? ? ? ? ? ? ? ? />

? ? ? ? ? ? );

? ? ? ? }}

? ? ? ? control={control}

? ? ? ? name="name"

? ? ? ? rules={{ validate: isRequired }}

? ? />


? ?// ...

}


查看完整回答
反對(duì) 回復(fù) 2023-10-14
  • 1 回答
  • 0 關(guān)注
  • 164 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)