質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
TypeScript

TypeScriptは、マイクロソフトによって開発された フリーでオープンソースのプログラミング言語です。 TypeScriptは、JavaScriptの構文の拡張であるので、既存の JavaScriptのコードにわずかな修正を加えれば動作します。

React.js

Reactは、アプリケーションのインターフェースを構築するためのオープンソースJavaScriptライブラリです。

Q&A

解決済

1回答

2950閲覧

useReducerでなぜかエラー

2_34_koki

総合スコア67

TypeScript

TypeScriptは、マイクロソフトによって開発された フリーでオープンソースのプログラミング言語です。 TypeScriptは、JavaScriptの構文の拡張であるので、既存の JavaScriptのコードにわずかな修正を加えれば動作します。

React.js

Reactは、アプリケーションのインターフェースを構築するためのオープンソースJavaScriptライブラリです。

0グッド

0クリップ

投稿2020/06/05 10:00

import { Users } from "config/userList" import { useReducer } from 'react' type User = { Id: number, Image: string, Name: string, DoClap: number, ReciveClap: number, } const initialState: User = {...Users[0]}; enum UserActionType { SET = "SET" } type UserAction = { type: UserActionType; res?: User; } const set = (res: User) => ({ type: UserActionType.SET, res }) const reducer = (state, action: UserAction) => { switch (action.type) { case UserActionType.SET: return [action.res] default: state; } } export const getUser = () => { const [state, dispatch] = useReducer(reducer, initialState); //ここでエラーは発生して const handleSelect = e => { dispatch(set(e.target.value)); } return [state, handleSelect]; }

下記のようなエラーが発生します。

No overload matches this call. Overload 1 of 5, '(reducer: ReducerWithoutAction<any>, initializerArg: any, initializer?: undefined): [any, DispatchWithoutAction]', gave the following error. Argument of type '(state: any, action: UserAction) => (User | undefined)[] | undefined' is not assignable to parameter of type 'ReducerWithoutAction<any>'. Overload 2 of 5, '(reducer: (state: any, action: UserAction) => (User | undefined)[] | undefined, initialState: (User | undefined)[] | undefined, initializer?: undefined): [...]', gave the following error. Argument of type 'User' is not assignable to parameter of type '(User | undefined)[]'.

エラーの内容で調べても全く歯が立たない状態です.
もし可能であれば、ご教授お願いします。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

自己解決

rederの戻り値の型を指定すると大丈夫

投稿2020/10/09 10:30

2_34_koki

総合スコア67

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問