javascript - 使用reaaft route 報(bào)錯(cuò)
問(wèn)題描述
頁(yè)面引入react route
import React, { Component } from ’react’;import { Router, Route, IndexRoute, browserHistory } from ’react-router’;// 登錄界面import Login from ’../Login/index’;class App extends Component { render() {return ( <Router history={browserHistory}><Route path='/login' component={Login} /> </Router>); }}export default App;
但是一直提示報(bào)錯(cuò),’react-router’ does not contain an export named ’browserHistory’.我之前的項(xiàng)目使用history={browserHistory}請(qǐng)問(wèn)下這個(gè)怎么修改,少了什么依賴(lài)嗎
問(wèn)題解答
回答1:你用的react-router版本是4.x吧
v4版本的react-router中移除了history這個(gè)屬性,取而代之的是BrowserRouter標(biāo)簽https://github.com/ReactTrain...
相關(guān)文章:
1. macos - 無(wú)法source activate python272. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?3. javascript - 微信 H5 授權(quán) 返回鍵4. github - 求助大神啊,win10 git clone error,折騰了幾天都不行,以前原本好好的,突然就這樣了5. android - 如何實(shí)現(xiàn)QQ pad 點(diǎn)擊右側(cè)輸入框,只頂右側(cè)的布局,左側(cè)布局不動(dòng)6. javascript - npm run build后調(diào)用api返回index.html7. css - 關(guān)于background-position百分比的問(wèn)題?8. java - 處理數(shù)據(jù)關(guān)聯(lián)關(guān)系,使用數(shù)據(jù)庫(kù)表外鍵和代碼內(nèi)維護(hù)相比的優(yōu)缺點(diǎn)?9. javascript - node得到req不能得到boolean10. 小白學(xué)python的問(wèn)題 關(guān)于%d和%s的區(qū)別

網(wǎng)公網(wǎng)安備