2018年5月3日

window.location 属性

摘要: 属性含义值 protocol: 协议 "http:" hostname: 服务器的名字 "b.a.com" port: 端口 "88" pathname: URL中主机名后的部分 "/index.php" search: "?"后的部分,又称为查询字符串 "?name=kang&when=2011" hash: 返回"#"之后的内容 "#first" hos... 阅读全文

posted @ 2018-05-03 16:47 童彪 阅读(110) 评论(0) 推荐(0) 编辑

post get 区别

摘要: GET 请求能被缓存,POST不能; POST 相对安全,GET的请求都包含在URL里 POST 可以通过request body 来传输较多的数据 URL有长度限制,会影响到GET请求,这个长度是由浏览器规定的 POST 请求支持更多的数据编码类型,不会对数据类型限制 状态码: 3xx 重定向 3 阅读全文

posted @ 2018-05-03 10:27 童彪 阅读(285) 评论(0) 推荐(0) 编辑

vue 生命周期

摘要: beforeCreate: created: beforeMount: mounted: beforeUpdate: updated: activated:(keep-alive组件激活时调用, 该钩子在服务器端渲染期间不被调用 ) deactivated:(keep-alive组件激活时调用, 该 阅读全文

posted @ 2018-05-03 09:56 童彪 阅读(106) 评论(0) 推荐(0) 编辑

导航