Axios Snippets
Sublime Text [axios](https://github.com/axios/axios) API片段集合
详细信息
安装次数
- 总数 706
- Win 480
- Mac 99
- Linux 127
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
读我
Axios Snippets For Sublime Text
这是一个为Sublime Text收集的axios API片段
安装
使用Sublime Text的Package Control(首选项 -> Package Control -> 安装包 -> Axios Snippets)来安装此软件包。
片段
- axios
axios({
method: 'get',
url: '',
}).then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.request | axiosr
axios.request({
method: 'get',
url: '',
}).then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.get | axiosge
axios.get('url', {
params: {
key: 'value',
},
}).then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.delete | axiosde
axios.delete('url').then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.head | axioshe
axios.head('url').then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.options | axiosop
axios.options('url').then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.post | axiospo
axios.post('url', {
key: 'value',
}).then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.put | axiospu
axios.put('url', {
key: 'value',
}).then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.patch | axiospa
axios.patch('url', {
key: 'value',
}).then((response) => {
// TODO
}).catch((error) => {
console.error(error);
}).finally(() => {
// TODO
});
- axios.create | axioscr
axios.create({
baseURL: 'base-url',
timeout: 5000,
headers: {
'X-Requested-With': 'XMLHttpRequest',
}
});
同时也支持一些Promise命令
- promise new | Promise new.
new Promise((resolve, reject) => {
// TODO
});
- promise | Promise
Promise((resolve, reject) => {
// TODO
});
贡献
如果您有任何想法和新特性,请分叉并向仓库提交拉取请求。