小程序函数劫持的基本原理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序函数劫持的基本原理相关的知识,希望对你有一定的参考价值。
function Page(){ let onLoad = arguments[0].onLoad; arguments[0].onLoad = function(){ //doSomeThing(arguments); onLoad.apply(this,arguments); } } Page({ onLoad:function(options){ this.boolean = true; } })
以上是关于小程序函数劫持的基本原理的主要内容,如果未能解决你的问题,请参考以下文章