您尝试重定向到当前所在的路线

时间:2018-10-15 21:19:00

标签: reactjs react-router-v4

我有此按钮可以将state.redirectoToParts从false更改为true,以便将页面重定向到/ parts。但是,它不起作用,而是给我此警告消息,并且/ parts中的PartsView组件无法呈现:

index.js:2178警告:您试图重定向到当前使用的相同路径:“ / parts”

我在主包装器组件中的代码

SelectedRateType = SELECTEDVALUE(TABLE2[rate_type])

exchangeRateCalculate =
CALCULATE(VALUES(TABLE2[exch_rate]), 
    CALCULATETABLE(TABLE2,
        FILTER(TABLE2, TABLE2[fromcurrency] = [SelectedFromCurrency]),
        TABLE2[tocurrency] in VALUES(TABLE2[tocurrency]),
        TABLE2[rate_type] in VALUES(TABLE2[rate_type]),
        FILTER(TABLE2,
            TABLE2[rateeffectivefromdate] <= [SelectedDate] && 
            TABLE2[rateeffectivetodate] >= [SelectedDate]
        )
    )
)

0 个答案:

没有答案