get获取后台数据

let url = $.getCookie('prefixUrl')+'/currencyRatesManage/getCurrency';
let vm=this;
$.ajax({
url: url,
method: 'get',
dataType: 'json',
success: function(data){
vm.currencyTypeList=data.payload.results.currencytList;
vm.currencyType=vm.currencyTypeList[0].fnumber;
//vm.currencyTypeName=vm.currencyTypeList[0].fname;
},
error:function(){
alert("程序错误,请检查");
}
});

猜你喜欢

转载自www.cnblogs.com/cx709452428/p/9295959.html