反应路由器订购

时间:2019-02-05 02:09:06

标签: react-router

我有如下指定的路由器,并且具有网址http://localhost:8000/billing/bill/linematching/c55718e9-9d70-4b65-88ba-fca97d900ca5/693可以登陆TBLineMatchingPage

    <Route
        path="/billing/bill/linematching/:billingRunId"
        component={TBCustomersPage}
    />
    <Route
        path="/billing/bill/linematching/:billingRunId/:accountNumber"
        component={TBLineMatchingPage}
    />

但是,当有人执行了软件包升级任务后,相同的URL将无法再登陆到TBLineMatchingPage,并且我必须将该路由移至TBCustomersPage上方才能正常工作。

    <Route
        path="/billing/bill/linematching/:billingRunId/:accountNumber"
        component={TBLineMatchingPage}
    />
    <Route
        path="/billing/bill/linematching/:billingRunId"
        component={TBCustomersPage}
    />

有什么原因吗?发生了什么变化?

0 个答案:

没有答案