问题描述
困扰我好几天就是赋值不进去 ajax拿到数据以后怎么赋值给iteam 我渲染的数据都是空的不对的 我也不知道为什么求大神解答,试了很多方法
问题出现的环境背景及自己尝试过哪些方法
相关代码
new Vue({
el: '#a-weather-waring',
data: {
iteam: null
},
methods: {
Get_YJweather: function() {
var _this = this;
mui.ajax('http://WeatherHandler.ashx?method=Get_YJweather', {
data: {
timefrom: '2018-12-04',
timeto: '2018-12-04'
},
dataType: 'json', //服务器返回json格式数据
type: 'post', //HTTP请求类型
timeout: 50000, //超时时间设置为10秒;
success: function(res) {
_this.iteam = res;
console.log(res);
},
error: function(xhr, type, errorThrown) {
}
});
}
}
});
各位大大 我弄好了 SB后台给我的是string 妈的 我一直以为是json 打败我的不是代码 不是vue 而是人与人之间的信任