web123456

The method of executing the previous page or modifying the data attribute value of the previous page when the page stack returns to the previous page in WeChat applet

let pages = getCurrentPages(); let prevPage = pages[pages.length - 2]; // Get the previous page instance object console.log(prevPage) //Print information // Execute the required method in the success callback wx.navigateBack({ delta: 1, // Return to the previous page success: function() { //Modify the property value of the previous page prevPage.setData({ qiehuan: false }) //Execute the previous page method prevPage.errorAddressToast(); }, fail: function() { // Return the logic when it fails } });