美文网首页
小程序获取远程数据json

小程序获取远程数据json

作者: 小进我是爸爸 | 来源:发表于2019-08-12 08:38 被阅读0次

public function indexajax()

{

    header("Content-type:text/html;charset=utf-8");

    $alist = Articles::with('articleimg')->select()->toJson();

    return $alist;

}

onLoad: function () {

    this.getArticles() //

  },

//自定义函数

  getArticles:function(){

    var that = this;

    wx.request({

      url: 'http://url', //远程json

      success: function (res) {

        console.log(res.data)

        that.setData({

          articles: res.data

        })

      }

    })

  }

//page的data中必须声明用中括号也可以的

articles:{},

相关文章

网友评论

      本文标题:小程序获取远程数据json

      本文链接:https://www.haomeiwen.com/subject/pcqyjctx.html