vuex actions传递多参数的处理方法
程序员文章站
2023-11-27 10:23:34
场景
在使用vue components dispatch vuex actions的时候需要传递参数给多个参数actions
但是在actions 只是可以接收到两个...
场景
在使用vue components dispatch vuex actions的时候需要传递参数给多个参数actions
但是在actions 只是可以接收到两个参数的问题
分析
vuex actions 固定接受的第一个参数是dispatch对象 第二个参数是使用者本身定制的参数
参考
`https://developer.mozilla.org/zh-cn/docs/web/javascript/reference/operators/destructuring_assignment`
解决
调用的时候 第二个参数传递成多个元素的对象这样在actions 中第二个参数就可以搞定了
this.$store.dispatch('deltask', {task, index});
actions使用es2015参数解析
deltask : function (store, {index, task}) { let url = 'http://zhihu.carsonlius_liu.cn/api/tasks/' + task.id; http.$http.delete(url).then(function (response) { if (response.body.status === 'success') { store.commit('delspecialtask', index); } }); }
以上这篇vuex actions传递多参数的处理方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: Java调用.dll文件的方法
推荐阅读
-
vuex actions传递多参数的处理方法
-
php post json参数的传递和接收处理方法
-
SpringMVC入门(二)—— 参数的传递、Controller方法返回值、json数据交互、异常处理、图片上传、拦截器
-
jsp中URL传递中文参数的处理方法
-
php post json参数的传递和接收处理方法
-
window.showModalDialog参数传递中含有特殊字符的处理方法_javascript技巧
-
SpringMVC入门(二)—— 参数的传递、Controller方法返回值、json数据交互、异常处理、图片上传、拦截器
-
window.showModalDialog参数传递中含有特殊字符的处理方法_javascript技巧
-
php post json参数的传递和接收处理方法
-
php post json参数的传递和接收处理方法