Router push has no effect in dva.js.

        *del({ id }, { call, put }) {
            const response = yield call(delAdvertiser, id);

            if (response.status === true) {
                message.success("");
                // yield put({
                //     type: "needRefresh",
                //     payload: true,
                // });
                yield put(routerRedux.push("/customer/advertiser/list"));
            }
            else {
                message.error("");
            }
        },

now an asynchronous delete operation, which refreshes the page after deletion. However, after using dva"s routerRedux.push, the page is not refreshed, and the page is still the original page. Is it because my push address is the same as the current address, so it is not refreshed? I can add from / edit to / list when I add. But it is not possible to delete from / list to / list.

Apr.24,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b41f17-2c5b5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b41f17-2c5b5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?