readme

前端框架使用说明

配置 yarn

可以通过以下代码检验是否安装了yarn yarn -v or yarn --version

如果没有安装yarn可以尝试用npm代替, 如果不行可根据以下步骤安装yarn

macOS

可以通过Homebrew安装

brew install yarn

windows

可以通过安装程序安装

安装

yarn install --registry=https://registry.npm.taobao.org

运行

yarn run serve

使用的UI

已配置Ant Design Vue, 可以参考的文档

axios

实例

get

// Make a request for a user with a given ID
axios.get('/user?ID=12345')
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

// Optionally the request above could also be done as
axios.get('/user', {
    params: {
      ID: 12345
    }
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

post

axios.post('/user', {
    firstName: 'Fred',
    lastName: 'Flintstone'
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

同时发送多请求

function getUserAccount() {
  return axios.get('/user/12345');
}

function getUserPermissions() {
  return axios.get('/user/12345/permissions');
}

axios.all([getUserAccount(), getUserPermissions()])
  .then(axios.spread(function (acct, perms) {
    // Both requests are now complete
  }));

你可能感兴趣的:(readme)