mpvue在onShow执行完后执行函数
时间: 2023-12-28 11:03:49 浏览: 84
在mpvue中,`onShow` 是小程序的生命周期函数,用于监听页面显示。在 `onShow` 函数执行完毕后,你可以通过调用其他自定义的函数来实现进一步的操作。
以下是一个示例,展示了在 `onShow` 函数执行完毕后调用另一个自定义函数的方法:
```javascript
onShow() {
console.log("---onShow---");
this.Get();
console.log(this.Arr.parkingList);
const formattedJsonString = this.Arr.parkingList.replace(/\\/g,'');
const jsonData = JSON.parse(formattedJsonString);
const parkingName = jsonData[0].parkingName;
console.log(parkingName);
this.packData.Name = parkingName;
// 在onShow执行完后调用其他函数
this.anotherFunction();
},
methods: {
anotherFunction() {
// 在这里编写你想要执行的代码
console.log("Another function is called after onShow");
}
}
```
在这个示例中,`anotherFunction` 是你想要在 `onShow` 执行完毕后调用的另一个函数。你可以在 `anotherFunction` 中编写你希望执行的逻辑代码。
希望这个示例对你有帮助。如果还有其他问题,请随时提问。
阅读全文