vue 中promise 非同步請求資料

abcByme發表於2018-11-07
export function getTypes(type) {
    return listDictItems({ code: type }).then((res) => {
        if (res.code == 200) {
            let list = res.body;
            // console.log(`list`,list);
            return list;
        }
    })
};

元件中:

 getTypes(`EP_TYPE`).then((data) => {console.log(`data`,data)});//成功

相關文章