2018-10-15
vue2.0用法分析
HTML
1 | <body> |
js
1 | /* eslint-disable no-new */ |
路由注册
1 | var router = new Router({ |
<router-link to="/goods">商品</router-link>
vue2.0用法,更改了1.0版本中的a标签包裹的写法,router-link会被解析成a标签;
vue中 stylus文件引入
npm install stylus stylus-loader --save-dev
或者在package.json
文件中写好依赖(百度写法,很简单),然后在执行npm install
代码规范问题
引入后空格和tab键问题报错
由于这个原因引起的错误需要在编辑器修改配置,以sublime为例,打开设置->用户设置
1 | { |
图标字体制作文件导入问题
由于制作好的图标字体分开放在了两个文件夹,所以要多css文件中引用的相关路径进行更改,否则找不到相关资源文件;
路由链接设置
1 | <router-link to="home">Home</router-link> /*渲染的标签会默认加上exact-active-class类,也可以通过以下方式修改默认项*/ |
Vue-Resource
Vue.js的插件提供了使用XMLHttpRequest或JSONP 发出Web请求和处理响应的服务 ;
- 支持Promise API和URI模板
- 支持请求和响应的拦截器
- 支持最新的Firefox,Chrome,Safari,Opera和IE9 +
- 支持Vue 1.0和Vue 2.0
- 紧凑的大小14KB(压缩5.3KB)
使用方式
1 | { |
Documentation
Response(常用函数返回值类型)
A request resolves to a response object with the following properties and methods:
Property | Type | Description |
---|---|---|
url | string |
Response URL origin |
body | Object , Blob , string |
Response body |
headers | Header |
Response Headers object |
ok | boolean |
HTTP status code between 200 and 299 |
status | number |
HTTP status code of the response |
statusText | string |
HTTP status text of the response |
Method | Type | Description |
text() | Promise |
Resolves the body as string |
json() | Promise |
Resolves the body as parsed JSON object |
blob() | Promise |
Resolves the body as Blob object |