vue中创建插件提供的方法是,vue创建组件的三种方式
各位老铁们好,相信很多人对vue中创建插件提供的方法是都不是特别的了解,因此呢,今天就来为大家分享下关于vue中创建插件提供的方法是以及vue创建组件的三种方式的问题知识,还望可以帮助大家,解决大家的一些困惑,下面一起来看看吧!
vue的http请求主要是用什么插件
axios
基于 Promise的 HTTP请求客户端,可同时在浏览器和 node.js中使用
功能特性
在浏览器中发送XMLHttpRequests请求
在 node.js中发送http请求
支持PromiseAPI
拦截请求和响应
转换请求和响应数据
自动转换 JSON数据
客户端支持保护安全免受XSRF攻击
安装
使用 bower:
$ bower install axios
使用 npm:
$ npm install axios
例子
发送一个GET请求
//MakearequestforauserwithagivenID
axios.get('/user?ID=12345')
.then(function(response){
console.log(response);
})
.catch(function(response){
console.log(response);
});//Optionallytherequestabovecouldalsobedoneas
axios.get('/user',{
params:{
ID:12345
}
})
.then(function(response){
console.log(response);
})
.catch(function(response){
console.log(response);
});发送一个POST请求
axios.post('/user',{
firstName:'Fred',
lastName:'Flintstone'
})
.then(function(response){
console.log(response);
})
.catch(function(response){
console.log(response);
});发送多个并发请求
functiongetUserAccount(){
returnaxios.get('/user/12345');
}
functiongetUserPermissions(){
returnaxios.get('/user/12345/permissions');
}
axios.all([getUserAccount(),getUserPermissions()])
.then(axios.spread(function(acct,perms){
//Bothrequestsarenowcomplete
}));axios API
可以通过给axios传递对应的参数来定制请求:
axios(config)
//SendaPOSTrequestaxios({method:'post',url:'/user/12345',
data:{firstName:'Fred',lastName:'Flintstone'}});
axios(url[,config])
//SnedaGETrequest(defaultmethod)
axios('/user/12345');
请求方法别名
为方便起见,我们为所有支持的请求方法都提供了别名
axios.get(url[,config])
axios.delete(url[,config])
axios.head(url[,config])
axios.post(url[,data[,config]])
axios.put(url[,data[,config]])
axios.patch(url[,data[,config]])注意
当使用别名方法时,url、method和data属性不需要在 config参数里面指定。
并发
处理并发请求的帮助方法
axios.all(iterable)
axios.spread(callback)
创建一个实例
你可以用自定义配置创建一个新的 axios实例。
axios.create([config])
varinstance=axios.create({
baseURL:';,
timeout:1000,
headers:{'X-Custom-Header':'foobar'
}});实例方法
所有可用的实例方法都列在下面了,指定的配置将会和该实例的配置合并。
axios#request(config)
axios#get(url[,config])
axios#delete(url[,config])
axios#head(url[,config])
axios#post(url[,data[,config]])
axios#put(url[,data[,config]])
axios#patch(url[,data[,config]])请求配置
下面是可用的请求配置项,只有url是必需的。如果没有指定method,默认的请求方法是GET。
{
//`url`istheserverURLthatwillbeusedfortherequest
url:'/user',
//`method`istherequestmethodtobeusedwhenmakingtherequest
method:'get',//default
//`baseURL`willbeprependedto`url`unless`url`isabsolute.
//Itcanbeconvenienttoset`baseURL`foraninstanceofaxiostopassrelativeURLs
//tomethodsofthatinstance.
baseURL:';,
//`transformRequest`allowschangestotherequestdatabeforeitissenttotheserver
//Thisisonlyapplicableforrequestmethods'PUT','POST',and'PATCH'
//ThelastfunctioninthearraymustreturnastringoranArrayBuffer
transformRequest:[function(data){
//Dowhateveryouwanttotransformthedata
returndata;
}],
//`transformResponse`allowschangestotheresponsedatatobemadebefore
//itispassedtothen/catch
transformResponse:[function(data){
//Dowhateveryouwanttotransformthedata
returndata;
}],
//`headers`arecustomheaderstobesent
headers:{'X-Requested-With':'XMLHttpRequest'},
//`params`aretheURLparameterstobesentwiththerequest
params:{
ID:12345
},
//`paramsSerializer`isanoptionalfunctioninchargeofserializing`params`
//(e.g.)
paramsSerializer:function(params){
returnQs.stringify(params,{arrayFormat:'brackets'})
},
//`data`isthedatatobesentastherequestbody
//Onlyapplicableforrequestmethods'PUT','POST',and'PATCH'
//Whenno`transformRequest`isset,mustbeastring,anArrayBufferorahash
data:{
firstName:'Fred'
},
//`timeout`specifiesthenumberofmillisecondsbeforetherequesttimesout.
//Iftherequesttakeslongerthan`timeout`,therequestwillbeaborted.
timeout:1000,
//`withCredentials`indicateswhetherornotcross-siteAccess-Controlrequests
//shouldbemadeusingcredentials
withCredentials:false,//default
//`adapter`allowscustomhandlingofrequestswhichmakestestingeasier.
//Call`resolve`or`reject`andsupplyavalidresponse(see[responsedocs](#response-api)).
adapter:function(resolve,reject,config){
/*...*/
},
//`auth`indicatesthatHTTPBasicauthshouldbeused,andsuppliescredentials.
//Thiswillsetan`Authorization`header,overwritinganyexisting
//`Authorization`customheadersyouhavesetusing`headers`.
auth:{
username:'janedoe',
password:'s00pers3cret'
}
//`responseType`indicatesthetypeofdatathattheserverwillrespondwith
//optionsare'arraybuffer','blob','document','json','text'
responseType:'json',//default
//`xsrfCookieName`isthenameofthecookietouseasavalueforxsrftoken
xsrfCookieName:'XSRF-TOKEN',//default
//`xsrfHeaderName`isthenameofthehttpheaderthatcarriesthexsrftokenvalue
xsrfHeaderName:'X-XSRF-TOKEN',//default
//`progress`allowshandlingofprogresseventsfor'POST'and'PUTuploads'
//aswellas'GET'downloads
progress:function(progressEvent){
//Dowhateveryouwantwiththenativeprogressevent
}
}响应的数据结构
响应的数据包括下面的信息:
{
//`data`istheresponsethatwasprovidedbytheserver
data:{},
//`status`istheHTTPstatuscodefromtheserverresponse
status:200,
//`statusText`istheHTTPstatusmessagefromtheserverresponse
statusText:'OK',
//`headers`theheadersthattheserverrespondedwith
headers:{},
//`config`istheconfigthatwasprovidedto`axios`fortherequest
config:{}
}当使用then或者catch时,你会收到下面的响应:
axios.get('/user/12345')
.then(function(response){
console.log(response.data);
console.log(response.status);
console.log(response.statusText);
console.log(response.headers);
console.log(response.config);
});默认配置
你可以为每一个请求指定默认配置。
全局 axios默认配置
axios.defaults.baseURL=';;
axios.defaults.headers.common['Authorization']=AUTH_TOKEN;
axios.defaults.headers.post['Content-Type']='application/x-www-form-urlencoded';自定义实例默认配置
//Setconfigdefaultswhencreatingtheinstance
varinstance=axios.create({
baseURL:';
});
//Alterdefaultsafterinstancehasbeencreated
instance.defaults.headers.common['Authorization']=AUTH_TOKEN;配置的优先顺序
Configwillbemergedwithanorderofprecedence.Theorderislibrarydefaultsfoundinlib/defaults.js,thendefaultspropertyoftheinstance,andfinallyconfigargumentfortherequest.Thelatterwilltakeprecedenceovertheformer.Here'sanexample.
//Createaninstanceusingtheconfigdefaultsprovidedbythelibrary
//Atthispointthetimeoutconfigvalueis`0`asisthedefaultforthelibraryvarinstance=axios.create();
//Overridetimeoutdefaultforthelibrary
//Nowallrequestswillwait2.5secondsbeforetimingoutinstance.defaults.timeout=2500;
//Overridetimeoutforthisrequestasit'sknowntotakealongtimeinstance.get('
/longRequest',{timeout:5000});拦截器
你可以在处理then或catch之前拦截请求和响应
//添加一个请求拦截器
axios.interceptors.request.use(function(config){
//Dosomethingbeforerequestissent
returnconfig;
},function(error){
//Dosomethingwithrequesterror
returnPromise.reject(error);
});
//添加一个响应拦截器
axios.interceptors.response.use(function(response){
//Dosomethingwithresponsedata
returnresponse;
},function(error){
//Dosomethingwithresponseerror
returnPromise.reject(error);
});移除一个拦截器:
varmyInterceptor=axios.interceptors.request.use(function(){/*...*/});
axios.interceptors.request.eject(myInterceptor);你可以给一个自定义的 axios实例添加拦截器:
varinstance=axios.create();
instance.interceptors.request.use(function(){/*...*/});错误处理
axios.get('/user/12345')
.catch(function(response){
if(responseinstanceofError){
//SomethinghappenedinsettinguptherequestthattriggeredanError
console.log('Error',response.message);
}else{
//Therequestwasmade,buttheserverrespondedwithastatuscode
//thatfallsoutoftherangeof2xx
console.log(response.data);
console.log(response.status);
console.log(response.headers);
console.log(response.config);
}
});Promises
axios依赖一个原生的 ES6 Promise实现,如果你的浏览器环境不支持 ES6 Promises,你需要引入polyfill
vue原理相关总结
一、vue2.0的双向绑定是怎么实现的
2、observer,compile,watcher
(1)observe是一个数据监听器,核心方法是Object.defineProperty
(3)compile是一个指令解析器,对需要监听的节点和属性进行扫描和解析。
3、此模式的优点:不需要显式调用,可以直接通知变化,更新视图;劫持了属性setter,不需要额外的diff操作
4、Object.defineProperty缺点
(1)不能监听数组
(2)不能监听整个对象,只能监听属性
(3)不能监听属性的增删,只能监听变化
5、3.0版本使用Proxy
(1)可以监听数组
(2)可直接监听整个对象,不用层层递归属性
(3)get和set时候直接有参数,不需要单独存储变量
(4)new Proxy()会返回一个新对象,不会污染源对象。
二、数据不更新的问题
1、更新的原理:在数据读取时收集依赖,在赋值时通知依赖更新。
2、object有defineProperty方法,通过getter,setter只监听了属性的读取和赋值,但是新增属性和删除属性没有检测,所以专门提供了$set和$delete来实现
3、array,没有defineProperty方法,没有setter,通过get和新建数组方法拦截器修改原生方法push,pop,shift,unshift,splice,sort,reserve来实现监听,而通过修改数组下标操作数组的不会被检测,所以专门提供了$set和$delete来实现
4、$set(target, key, value)和$delete(target, propertyName/index)方法原理
(1)判断target是否是undefined,null,或者原始类型,或者vue实例,或者vue实例的跟数据对象
(2)target为数组,则还是通过调用splice操作索引更新数据
(3)target为对象,且为响应式,则调用defineReactive操作数据
(4)更新完数据后通知依赖更新
三、computed和watch和methods
1、computed
(1)设计初衷:为了使模板中的逻辑运算更简单
(2)适用于数据被重复使用或者计算复杂费时的场景;依赖其他数据的场景
(3)读取缓存,依赖不变,则不需重新计算。(根据dirty标志判断)
2、watch是对数据的监听回调
3、computed和watch的区别
相同点:都会观察页面的数据变化
不同点:(1)computed是读取缓存,watch每次都要重新执行;
(2)watch更适合数据变化时的异步操作和开销较大的操作。
4、computed和methods的区别
computed依赖缓存,可以定义getter和setter,但是methods不行
四、vue-router的模式区别
1、abstract:非浏览器环境下使用
2、hash:
(1)默认。监听hashchange实现。
(2)有点,兼容性好,ie8支持
(3)缺点:看起来奇怪
3、history:
(1)h5新增的。允许开发者直接修改前端路由而不重新触发请求页面
(2)实现原理:监听popstate事件。能监听到用户点击浏览器的前进后退事件或者手动调用go,back,forward事件;不能监听到pushState和replaceState事件。
(3)为了避免浏览器刷新出现的404页面,需要在服务端配置兼容。
(4)如果浏览器不支持,会降级到hash模式
*通过vue.use插件机制和vue.mixin将store在beforeCreate和destroyed生命周期进行混入。
五、vuex解决了什么问题
1、vuex解决了vue项目中的数据状态管理问题
2、是组件通信的一种方式。
3、原理:创建了单一的状态树,包含state,mutation,action,getter,module。
4、view(dispatch)action(commit)mutation(mutate)state(render)view
5、通过vue的data和computed,让state变成响应式,
6、通过vue.use插件机制和vue.mixin将store在beforeCreate生命周期进行混入。
六、nextTick是怎么是实现的
1、作用:将回调延迟到下次DOM更新循环之后执行
2、原因:VUE在更新DOM时是异步的,vue检测到数据变化后,不会立即更新DOM,而是会开启一个事件队列,并缓冲同一时间循环中的所有数据变更,在下一次tick中,执行更新DOM。
3、js的运行机制:js是单线程的,基于事件循环,有宏任务和微任务。
4、内部原理:
(1)能力检测:Promise.then(微), MutationObserve(微),setImmediate(微),setTimeout(宏)
(2)将回调函数推入回调队列,锁上易步锁,执行回调。
七、keep-alive内置组件和LRU算法(队列)
1、自身不会渲染成DOM,没有常规的标签,是个函数组件,被他包裹的组件,切换时会被缓存在内存中,而不是销毁。
(1)可以有条件的缓存:include(匹配到的缓存),exclude(匹配到的不缓存),max(最多可以缓存多少组件实例)
2、原理:内部维护了this.cache(缓存的组件对象)和this.keys(this.cache中的key),运用LRU策略。
(1)命中了缓存的组件要调整组件key的顺序。
(2)缓存的组件数量如果超过this.max时,要删除第一个缓存组件。
(3)LRU(Least recently used,最近最少使用):根据数据的历史访问记录来进行淘汰数据。“如果数据最近被访问过,那么将来被访问的几率也更高。”
3、生命周期钩子:activated和deactivated,被keep-alive包括的组件激活和停用时调用。先停用组件的deactivated,再激活组件的activated
在VueJS中如何设置用户权限
本篇文章主要给大家讲述了VueJS应用中管理用户权限的详细过程和方法,以及相关的代码展示,需要的朋友参考下吧。
在需要身份验证的前端应用里,我们经常想通过用户角色来决定哪些内容可见。比如,游客身份可以阅读文章,但注册用户或管理员才能看到编辑按钮。
在前端中管理权限可能会有点麻烦。你之前可能写过这样的代码:
if(user.type=== ADMIN|| user.auth&& post.owner=== user.id){
...
}作为代替方案,一个简洁轻量的库——CASL——可以让管理用户权限变得非常简单。只要你用CASL定义了权限,并设置了当前用户,就可以把上面的代码改为这样:
if(abilities.can('update','Post')){
...
}在这篇文章里,我会展示如何在前端应用里使用Vue.js和CASL来管理权限。
CASL速成课程CASL可以让你定义一系列规则来限制哪些资源对用户可见。
比如,CASL规则能够标明用户可以对给定的资源和实例(帖子、文章、评论等)进行哪些CRUD(Create, Read, Update和Delete)操作。
假设我们有分类广告网站。最显而易见的规则就是:
游客可以浏览所有帖子
管理员可以浏览所有帖子,并且可以更新或删除
使用CASL,我们用AbilityBuilder来定义规则。调用can来定义一条新规则。例如:
onst{ AbilityBuilder}= require('casl');
export function(type){
AbilityBuilder.define(can=>{
switch(type){
case'guest':
can('read','Post');
break;
case'admin':
can('read','Post');
can(['update','delete'],'Post');
break;
// Add more roles here
}
}
};现在,就可以用定义的规则来检查应用权限了。
import defineAbilitiesFor from'./abilities';
let currentUser={
id: 999,
name:"Julie"
type:"registered",
};
let abilities= defineAbilitiesFor(currentUser.type);
Vue.component({
template: `<p><p>
<p>Please log in</p>
`,
props: ['post' ],
computed:{
showPost(){
return abilities.can('read','Post');
}
}
});Demo课程作为演示,我做了一个用来展示分类广告帖子的服务器/客户端应用。这个应用的规则是:用户能够阅读帖子或发帖,但是只能更新或删除自己的帖子。
我用Vue.js和CASL来方便地运行和扩展这些规则,即使以后添加新的操作或实例也将很方便。
现在我就带你一步步搭建这个应用。如果你想一睹为快,请戳这个Github repo。
定义用户权限我们在 resources/ability.js中定义用户权限。CASL的一个优点是与环境无关,也就是说它既能在Node中运行,也能在浏览器中运行。
我们会把权限定义写到一个CommonJS模块里来保证Node的兼容性(Webpack能让这个模块用在客户端)。
resources/ability.js
const casl= require('casl');
module.exports= function defineAbilitiesFor(user){
return casl.AbilityBuilder.define(
{ subjectName: item=> item.type},
can=>{
can(['read','create'],'Post');
can(['update','delete'],'Post',{ user: user});
}
);
};下面我们来剖析这段代码。
define方法的第二个参数,我们通过调用can来定义了权限规则。这个方法的第一个参数是你要允许的CRUD操作,第二个是资源或实例,在这个例子中是Post。
注意第二个can的调用,我们传了一个对象作为第三个参数。这个对象是用来测试user属性是否匹配我们提供的user对象。如果我们不这么做,那不光创建者可以删帖,谁都可以随便删了。
resources/ability.js
...
casl.AbilityBuilder.define(
...
can=>{
can(['read','create'],'Post');
can(['update','delete'],'Post',{ user: user});
}
);CASL检查实例来分配权限时,需要知道实例的type。一种解决方式是把具有subjectName方法的对象,作为define方法的第一个参数,subjectName方法会返回实例的类型。
我们通过在实例中返回type来达成目的。我们需要保证,在定义Post对象时,这个属性是存在的。
resources/ability.js
...
casl.AbilityBuilder.define(
{ subjectName: item=> item.type},
...
);最后,我们把我们的权限定义封装到一个函数里,这样我们就可以在需要测试权限的时候直接传进一个user对象。在下面的函数中会更易理解。
resources/ability.js
const casl= require('casl');
module.exports= function defineAbilitiesFor(user){
...
};Vue中的访问权限规则现在我们想在前端应用中检查一个对象中,用户具有哪些CRUD权限。我们需要在Vue组件中访问CASL规则。这是方法:
引入Vue和 abilities plugin。这个插件会把CASL加到Vue的原型上,这样我们就能在组件内调用了。
在Vue应用内引入我们的规则(例: resources/abilities.js)。
定义当前用户。实战中,我们是通过服务器来获取用户数据的,在这个例子中,我们简单地硬编码到到项目里。
牢记,abilities模块export一个函数,我们把它称为defineAbilitiesFor。我们会向这个函数传入用户对象。现在,无论何时,我们可以通过检测一个对象来得出当前用户拥有何种权限。
添加abilities插件,这样我们就可以在组件中像这样来进行测试了:this.$can(...)。
src/main.js
import Vue from'vue';
import abilitiesPlugin from'./ability-plugin';
const defineAbilitiesFor= require('../resources/ability');
let user={ id: 1, name:'George'};
let ability= defineAbilitiesFor(user.id);
Vue.use(abilitiesPlugin, ability);Post实例我们的应用会使用分类广告的帖子。这些表述帖子的对象会从数据库中检索,然后被服务器传给前端。比如:
我们的Post实例中有两个属性是必须的:
type属性。CASL会使用 abilities.js中的subjectName回调来检查正在测试的是哪种实例。
user属性。这是发帖者。记住,用户只能更新和删除他们发布的帖子。在 main.js中我们通过defineAbilitiesFor(user.id)已经告诉了CASL当前用户是谁。CASL要做的就是检查用户的ID和user属性是否匹配。
let posts= [
{
type:'Post',
user: 1,
content:'1 used cat, good condition'
},
{
type:'Post',
user: 2,
content:'Second-hand bathroom wallpaper'
}
];这两个post对象中,ID为1的George,拥有第一个帖子的更新删除权限,但没有第二个的。
在对象中测试用户权限帖子通过Post组件在应用中展示。先看一下代码,下面我会讲解:
src/components/Post.vue
<template>
<p>
<p>
<br/><small>posted by</small>
</p>
<button@click="del">Delete</button>
</p>
</template>
<script> import axios from'axios';
export default{
props: ['post','username'],
methods:{
del(){
if(this.$can('delete', this.post)){
...
} else{
this.$emit('err','Only the owner of a post can delete it!');
}
}
}
}</script>
<style lang="scss">...</style>点击Delete按钮,捕获到点击事件,会调用del处理函数。
我们通过this.$can('delete', post)来使用CASL检查当前用户是否具有操作权限。如果有权限,就进一步操作,如果没有,就给出错误提示“只有发布者可以删除!”
服务器端测试在真实项目里,用户在前端删除后,我们会通过 Ajax发送删除指令到接口,比如:
src/components/Post.vue
if(this.$can('delete', post)){
axios.get(`/delete/${post.id}`,).then(res=>{
...
});
}服务器不应信任客户端的CRUD操作,那我们把CASL测试逻辑放到服务器:
server.js
app.get("/delete/:id",(req, res)=>{
let postId= parseInt(req.params.id);
let post= posts.find(post=> post.id=== postId);
if(ability.can('delete', post)){
posts= posts.filter(cur=> cur!== post);
res.json({ success: true});
} else{
res.json({ success: false});
}
});CASL是同构(isomorphic)的,服务器上的ability对象就可以从abilities.js中引入,这样我们就不必复制任何代码了!
封装此时,在简单的Vue应用里,我们就有非常好的方式管理用户权限了。
我认为this.$can('delete', post)比下面这样优雅得多:
if(user.id=== post.user&& post.type==='Post'){
...
}上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
JS中的单例模式实现对数据增删改查
使用Vue仿制今日头条(详细教程)
React开发如何配置eslint
文章分享结束,vue中创建插件提供的方法是和vue创建组件的三种方式的答案你都知道了吗?欢迎再次光临本站哦!