1.目录结构

在这里插入图片描述

app.js的数据我想在home页面使用怎么做

2.代码实现

app.js

 list:{
    information:{
      name:"xxx",
      duty:"研发部",
      dutyTwo:"前端开发工程师",
      tel:"1768888888",
      website:"www.xxxxxx.com",
      address:"xxxxxxxxxxxx",
  },
  }

home.js

//在data定义一个你想要存放的数据对象
data: {
      information:{},
  },
/**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
     const app = getApp()
      this.setData({
     information:app.list.information
      })
  },
  //setdata  app.js的数据传递给home.js

home.wxml使用

<view>{{information.name}}</view>
<view>{{information.tel}}</view>
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐