api.js
Posted zhaofeis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了api.js相关的知识,希望对你有一定的参考价值。
import apiConfig from ‘./config‘;
let Api = {
domain: process.env.URL,
imgUrl: process.env.imgURL,
// api
/*======= 用户 =======*/
// 登陆
login(username, password) {
let data = {
username: username,
password: password
};
return apiConfig.post(‘mobile-api/login‘, data).then( response => response);
},
// 登出
logout() {
return apiConfig.get(‘mobile-api/logout‘).then(response => response);
}
};
export default Api;
以上是关于api.js的主要内容,如果未能解决你的问题,请参考以下文章
face-api.js with Vue.js and Electron