• ADADADADAD

    微信小程序页面如何获取全局变量[ 建站问答 ]

    建站问答 时间:2024-12-01 19:02:25

    作者:文/会员上传

    简介:

    微信小程序页面获取全局变量的案例:app.js文件代码:App({globalData{test:"helloworld"}})index.js文件代码:varapp=getApp()Page({test:null})onLoad:function(options){this.setD

    以下为本文的正文内容,内容仅供参考!本站为公益性网站,复制本文以及下载DOC文档全部免费。

    微信小程序页面获取全局变量的案例:

    app.js文件代码:

    App({

    globalData{

    test:"helloworld"

    }

    })

    index.js文件代码:

    varapp=getApp()

    Page({

    test:null

    })

    onLoad:function(options){

    this.setData({

    test:app.globalData.test

    })

    }

    index.wxml文件代码:

    <view>{{test}}</view>

    微信小程序页面如何获取全局变量.docx

    将本文的Word文档下载到电脑

    推荐度:

    下载