欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mui传参原理介绍

程序员文章站 2024-01-17 12:12:46
mui传参 mui.openwindow({ url: 'szdetail.html', show: { anishow: 'pop-in' }, extras:...

    mui传参

    mui.openwindow({
    url: 'szdetail.html',
    show: {
    anishow: 'pop-in'
    },
    extras: { //extras里面的就是参数了
    name: that.list[index]
    },
    waiting: {
    autoshow: true, //自动显示等待框,默认为true
    }
    });

    将要跳转的页面:

    mui.plusready(function(){
    var self = plus.webview.currentwebview();
    vm.list = self.name;//获得参数
    });