//index.js //获取应用实例 const app = getApp() Page({ data: { nbFrontColor: '#000', nbBackgroundColor: '#fff' }, onLoad() { this.setData({ nbTitle: 'test', nbLoading: false, nbFrontColor: '#fff', nbBackgroundColor: '#000' }) }, //事件处理函数 getmenu: function () { wx.request({ url: 'http://192.168.20.53:9999/admin/menu/tree', method: 'get', header: { 'Authorization': 'Bearer ' + wx.getStorageSync('token') }, success(r) { console.log(r) console.log(r) } }) } })