首先在在系统的
app.js
文件中设置全局变量,然后在其余的文件中使用这个全局变量即可。
app.js文件
//app.js
App({
onLaunch: function () {
},
globalData: {
userInfo: null,
TestName:'哈哈哈哈',
}
})
index.js文件
//index.js
//获取应用实例
const app = getApp()
Page({
onLoad: function () {
if (app.globalData.TestName) {
console.log(app.globalData.TestName)
this.setData({
TestName:app.globalData.TestName
})
}
},
})
index.wxml文件
<view class="usermotto">
<text >{{TestName}}</text>
</view>
index.wxss文件
.usermotto {
position: fixed;
bottom: 400rpx;
left: 0;
width: 100%;
height: 110rpx;
background: #a30f97;
color: #fff;
font-size: 32rpx;
display: flex;
align-items: center;
justify-content: center;
}