赞
踩
- js里面编写连接后端数据
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- var _this = this
- wx.request({
- url: 'url', //url接口地址
- method: 'GET', //请求方式
- header: {
- 'content-type': 'application/json'
- }, // 设置请求的 header
- success: function (res) {
- console.log(res);
- let params = res.data.obj.records
- _this.setData({
- result: res.data.obj.records //查看输出的console.log(res)数据,确定数据在哪里
- });
- },
- fail: function () {
- app.consoleLog("请求数据失败");
- },
- complete: function () {
- }
- })
-
- },
- data里面:
- data: {
- result: [ //定义变量
- {
- content: "",
- createTime: "",
- createUser: "",
- id: "",
- isPrivate: "",
- spaceId: "",
- updateTime: "",
- updateUser: "",
- userIcon: "",
- userName: "",
- },
- ],
- }
在wxml里面修改的定义的就可以循环渲染后端数据了。
然后在你编写好的view或者text里面加上{{item.userName}}等你需要显示的后端字段
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。