一.简介
最近再学一些关于微信公众号网页开发的东西,这里用了vue框架搭建。遇到了几个问题,写在这里,以作记录。
二.具体内容
1.从后台拿数据,同步地渲染到页面上。
①首先是配置API请求
userAlways: function (param) {
return axios({
url: 'url地址',
method: 'get',
withCredentials: true
})
.then((response) => {
// console.log(response.data)
return response.data
})
.catch((error) => {
console.log(error)
})
}
②在需要的组件里调用该数据
getUserAlways: function () {
back.userAlways().then(function (response) {
console.log(response)
let stationInfo = []
let used
let total = null
let descTest = ''
if (response.data !== undefined) {
for (let i = 0; i < response.data.length; i++) {