16

默认的 react-router 是这样使用的:

import * as React from 'react';
import { Router, Route, hashHistory } from 'react-router';

const routing = (
    <Router history={hashHistory}>
        <Route path="/login" component={Login}/>
    </Router>   
};

当我包含“react-router-relay”库时,它会向路由器添加功能。也就是说,它向路由器组件(渲染和环境)添加了 2 个属性:

import * as React from 'react';
import * as Relay from 'react-relay';
import * as useRelay from 'react-router-relay';
import { Router, Route, hashHistory, applyRouterMiddleware } from 'react-router';

const routing = (
    <Router history={hashHistory} render={applyRouterMiddleware(useRelay)} environment={Relay.Store}>
        <Route path="/login" component={Login}/>
    </Router>   
};

我将如何增加 react-router 类型?

我尝试了很多方法,最新的是:

import { Router } from 'react-router';

declare module 'react-router' {
    namespace Router {
        export interface RouterProps {
            environment?: any
        }
    }
}

因为我需要扩展命名空间“Router”和它下面的接口“RouteProps”。

链接到 React 路由器类型:https ://www.npmjs.com/package/@types/react-router

React-router-relay 库本身没有任何类型。

我找到的有关此主题的所有信息:

4

2 回答 2

1

试试这个

declare module 'react-router' { 
   interface RouterProps {
      environment?: any
      render?: any
   } 
}

它正在使用最新的 react-router 定义。

于 2017-09-19T12:21:16.517 回答
0
<Router history={hashHistory} render={applyRouterMiddleware(useRelay)} environment={Relay.Store}>
    <Route path="/login" component={Login}/>
</Router>   

看起来 login (component={Login}) 未导入。因此,它总是返回错误。

于 2017-09-18T12:54:35.107 回答