incuisting/blogs

note

Opened this issue · 0 comments

1.vuex 如何改变一个state
项目里面 ,store的 index.js 最下面是action 组件里用 this.$store.commit(‘需要去调用的action’,)

2.浏览器渲染原理

3.作用域链

4.vue 父子组件通信
父组件 用props 传递给子组件,子组件用

父:

子:
Vue.component('child', {
// 声明 props
props: ['message'],
// 就像 data 一样,prop 可以用在模板内
// 同样也可以在 vm 实例中像“this.message”这样使用
template: '{{ message }}'
})

5.vue 与react 的区别 为什么 react 调用方法需要指定this vue 不需要
vue在内部已经把这个事情做了

https://segmentfault.com/a/1190000009750348
6.promise 异步流控制

7.数组api

8.--proto-- 与prototype 的区别
https://www.zhihu.com/question/34183746
proto(隐式原型)为了继承,他的后面总是跟着对象

与prototype(显式原型),他的后边永远跟着函数

9.vw 的计算是否包括滚动条

10。value=[

name:’xiaoming’,
age:’2’
},

name:’xiaoming’,
age:’4’
},

name:’xiaoming’,
age:’5’

对age进行求和 reduce 方法或者其他

11.jquery 翻转一个ul 里的li

xhr get
先new 一个xmlhttprequest 为xhr
xhr。onreadystatechange,设置回调函数
回调函数里面判断xhr。readystate的值
如果为4 并且 xhr。status 的值为200 到300之间 或者为304
表示请求成功

接着
xhr。open()写入请求类型和请求路径
xhr.send()
如果get请求 send里面就是null
如果是post请求,在send之前还需要
xhr。setRequestHeader ('Content-Type','application/x-www-form-urlencoded'

send()里面写需要发送的内容