npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

xt-admin-axios

v1.3.9

Published

axios 实例封装

Downloads

171

Readme

xt-admin-axios

axios 实例封装

安装

npm i xt-admin-axios

使用方法

与原生 axios 的用法相同

import axios from "xt-admin-axios";
axios(config);
axios.get(url, config);
axios.delete(url, config);
axios.head(url, config);
axios.options(url, config);
axios.post(url, data, config);
axios.put(url, data, config);
axios.patch(url, data, config);

config额外参数扩展

const config = { 
  cancelFun: (cancelFunction) => {}, //取消回调函数,将中止请求的方法以参数方式传递
  isReturnResponse: false, //如果存在,直接返回 response 不进行错误码校验,优先级最高
  isResFull: false, //如果存在响应完整的返回包,否则返回 res.result ,默认否,优先级次之
  noHandle401: false, //如果存在,不处理 401 错误(会话失效问题),默认否处理401
  errorPop: true, //如果存在,接口报错执行,弹出toast,如果为函数将调用 (errMsg,res.body) => {}
  successPop: (res.body) => {}, //如果存在,接口报错执行,弹出toast,如果为函数将调用 (msg, res.body) => {}
}

catch

catch(e) { //可被捕获的错误类型
  if (typeof e.code === 'number') { //接口报错
    //e = {code: 302, info: '报错信息', data: {}}
    //e = {code: 302, msg: '报错信息', data: {}}
  } else if (e.isCancel) { //请求取消
    //e= {isCancel: true, message: '可选信息'}
  } else if (e.isError) { //通信失败
    //e= {isError: true, message: '未联网'}
  }
}

支持 async/await

const {err, data} = await axios.asyncAwait(axios.get(url));
//err 如果为 1,data 是错误信息对象

vue install options

const options = {
  headers: {}, //请求头
  i18n: i18n.global.t,
  alert: (isErr, infoMsg, resData) => {}, //错误提示函数,isErr 出错标准,infoMsg 信息字符串
  toLogin: () => {}, //token 40101跳转到重新登录页
  newToken: () => {}, //获取新的 token 的函数
};