使用后端路由进行路由

时间:2018-01-05 02:25:00

标签: javascript php reactjs react-router

我在后端有一个带有php的React应用程序。 我在后端有API,例如example.com/api/***

我使用react-router-dom在前端进行路由:

const App = () => { return (
    <div>
          <BrowserRouter>
              <Switch>
                <Route exact path='/about' component={AboutComponent}/>
                <Route exact path='/' component={RootComponent}/>
              </Switch>
          </BrowserRouter>
    </div>
)}

当我尝试转到example.com/api/myAPIMethod时,路由由React处理,而React呈现空白页面,但我需要通过我的php后端来处理它。

问题是:如何通过浏览器的地址栏手动转到example.com/api/myAPIMethod。我希望通过我的php框架只处理这个方法,其他方法将通过axios或fetch使用

0 个答案:

没有答案