预习路线
- ajax — node — vue — 小程序 — react
AJAX
Part1不看php可以从第37个视频开始看
课件网盘链接 – 提取码:mc10
这个ajax的视频比较老了,,,
又另外找了一个备看
Node
课件网盘链接 – 提取码: nzys
VUE
Vue-黑马程序员视频 —>p1–p199是2018经典vue基础+项目实战教程—p200至最后是2019年最新的vue全家桶(包含了比较流行的新技术)+项目实战教程
资料
学习站点
git - 典型错误
手动封装数组方法
var arr = [5,6,7];
function myForEach(fn) {
for(var i = 0 ; i < this.length; i++){
fn(this[i],i,this); //循环调用回调函数,遍历数组中的值
}
}
console.log(myForEach);
Array.prototype.myForEach = myForEach; //把函数添加为Array的原型方法
//调用
arr.myForEach(function (item,index,arr) {
console.log(item,index,arr);
})
典型错误
npm install 的时候出现错误:
npm ERR! Unexpected end of JSON input while parsing near ‘…”,”webpack-dev-server’
1
解决方案:
第一步:
npm cache clean –force
1
第二步:(再安装)
npm install