小别致真东西
文章77
标签31
分类26
Axios

Axios

先从fetch讲起

一个简单的fetch例子如下:

fetch('./api/person.json')
.then(
function(response) {
if (response.status !== 200) {
console.log('Looks like there was a problem. Status Code: ' +
response.status);
return;
}

// Examine the text in the response
// 将返回数据 Json 化
response.json().then(function(data) {
console.log(data);
});
}
)
.catch(function(err) {
console.log('Fetch Error :-S', err);
});

1. .json()返回一个被解析为JSON格式的`promise`对象,当获取成功时,我们使用 json() 读取并解析数据

react-redux中Provider、connect

react-redux中Provider、connect

react-redux中Provider

详情

RegExp 正则表达式

RegExp 正则表达式

RegRxp(正则表达式)

正则表达式(regular expression)描述了一种字符串匹配的模式(pattern),可以用来检查一个串是否含有某种子串、将匹配的子串替换或者从某个串中取出符合某个条件的子串等,简化对字符串的操作

LazyLoad(懒加载)

LazyLoad(懒加载)

懒加载

  • 懒加载(延迟加载)是一种网页性能优化的方式,一般优先加载可视区域内的内容,其他部分进入可视区域再进行加载,能够提高用户体验。
  • 节省http请求数量、节省用户流量