77

index.tsx でこのエラーが発生しています。

プロパティ「REDUX_DEVTOOLS_EXTENSION_COMPOSE」はタイプ「ウィンドウ」には存在しません。

ここに私の index.tsx コードがあります:

import * as React from 'react';
import * as ReactDOM from 'react-dom';
import App from './App';
import './index.css';
import registerServiceWorker from './registerServiceWorker';

import { Provider } from 'react-redux';

import { createStore, compose, applyMiddleware } from 'redux';
import rootReducer from './store/reducers';

import thunk from 'redux-thunk';

const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;

 const store = createStore(rootReducer, composeEnhancers(
     applyMiddleware(thunk)
 ));

ReactDOM.render(  <Provider store={store}><App /></Provider>, document.getElementById('root'));

registerServiceWorker();

@types/npm install --save-dev redux-devtools-extension をインストールし、create-react-app-typescript を使用しています。事前に何が起こっているかについてのヒントをありがとう。

4

10 に答える 10

20

redux-dev-toolsこれは、typescript 反応アプリケーションで使用する方法です。

Windowオブジェクトのグローバル インターフェイスを作成します。

declare global {
  interface Window {
    __REDUX_DEVTOOLS_EXTENSION_COMPOSE__?: typeof compose;
  }
}

次に、次のように作成composeEnhancersします。

const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;

次に、を作成しstoreます。

const store = createStore(rootReducers, composeEnhancers());

rootReducers-私の場合combinedReducers、別のファイルで作成されたことを指します。

Providerこれで、次のように通常どおり使用できますReact.js

ReactDOM.render(
  <React.StrictMode>
    <Provider store={store}>
      <App />
    </Provider>
  </React.StrictMode>,
  document.getElementById("root")
);

のすべてのコードindex.tsx

import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
import reportWebVitals from "./reportWebVitals";
import rootReducers from "./reducers";

import { Provider } from "react-redux";
import { createStore, compose, applyMiddleware } from "redux";

declare global {
  interface Window {
    __REDUX_DEVTOOLS_EXTENSION_COMPOSE__?: typeof compose;
  }
}

const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
const store = createStore(rootReducers, composeEnhancers());

ReactDOM.render(
  <React.StrictMode>
    <Provider store={store}>
      <App />
    </Provider>
  </React.StrictMode>,
  document.getElementById("root")
);
reportWebVitals();

于 2021-07-01T14:37:11.673 に答える