当前位置: 首页 > news >正文

怎么改网站模板长沙市有限公司

怎么改网站模板,长沙市有限公司,市场营销策划书500字,南京网站开发南京乐识优Vue通信、传值的多种方式#xff0c;详解 转自#xff1a;https://blog.csdn.net/qq_35430000/article/details/79291287 一、通过路由带参数进行传值 ①两个组件 A和B,A组件通过query把orderId传递给B组件#xff08;触发事件可以是点击事件、钩子函数等#xff09; this.…Vue通信、传值的多种方式详解 转自https://blog.csdn.net/qq_35430000/article/details/79291287   一、通过路由带参数进行传值 ①两个组件 A和B,A组件通过query把orderId传递给B组件触发事件可以是点击事件、钩子函数等 this.$router.push({ path: /conponentsB, query: { orderId: 123 } }) // 跳转到B ②在B组件中获取A组件传递过来的参数 this.$route.query.orderId   二、通过设置 Session Storage缓存的形式进行传递 ①两个组件A和B在A组件中设置缓存orderData const orderData { orderId: 123, price: 88 } sessionStorage.setItem(缓存名称, JSON.stringify(orderData))   ②B组件就可以获取在A中设置的缓存了 const dataB JSON.parse(sessionStorage.getItem(缓存名称)) 此时 dataB 就是数据 orderData 朋友们可以百度下 Session Storage程序退出销毁 和 Local Storage长期保存 的区别。 三、父子组件之间的传值 一父组件往子组件传值props ①定义父组件父组件传递 number这个数值给子组件如果传递的参数很多推荐使用json数组{}的形式 ②定义子组件子组件通过 props方法获取父组件传递过来的值。props中可以定义能接收的数据类型如果不符合会报错。 ③假如接收的参数 是动态的比如 input输入的内容 v-model的形式 注意传递的参数名称不识别驼峰命名推荐使用横杠-命名 ④父子组件传值数据是异步请求有可能数据渲染时报错 原因异步请求时数据还没有获取到但是此时已经渲染节点了 解决方案可以在 父组件需要传递数据的节点加上  v-if false异步请求获取数据后v-if true 二、子组件往父组件传值通过emit事件 四、不同组件之间传值通过eventBus小项目少页面用eventBus大项目多页面使用 vuex ①定义一个新的vue实例专门用于传递数据并导出 ②定义传递的方法名和传输内容点击事件或钩子函数触发eventBus.emit事件 ③接收传递过来的数据 注意enentBus是一个另一个新的Vue实例区分两个this所代表得vue实例 五、vuex进行传值 为什么使用vuex? vuex主要是是做数据交互父子组件传值可以很容易办到但是兄弟组件间传值兄弟组件下又有父子组件或者大型spa单页面框架项目页面多并且一层嵌套一层的传值异常麻烦用vuex来维护共有的状态或数据会显得得心应手。 需求两个组件A和Bvuex维护的公共数据是 餐馆的名称 resturantName,默认餐馆名称是 飞歌餐馆那么现在A和B页面显示的就是飞歌餐馆。如果A修改餐馆名称 为 A餐馆则B页面显示的将会是 A餐馆反之B修改同理。这就是vuex维护公共状态或数据的魅力在一个地方修改了数据在这个项目的其他页面都会变成这个数据。           ①使用 vue-cli脚手架工具创建一个工程项目工程目录创建组件A和组件B路由如下 路由如下 import Vue from vue import Router from vue-router import componentsA from /components/componentsA import componentsB from /components/componentsB Vue.use(Router) export default new Router({ mode: history, routes: [ { path: /, name: componentsA, component: componentsA }, { path: /componentsA, name: componentsA, component: componentsA }, { path: /componentsB, name: componentsB, component: componentsB } ] }) app.vue template div idapp router-view/ /div /template script export default { name: App } /script style #app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } /style ②开始使用vuex新建一个 sotre文件夹分开维护 actions mutations getters ②在store/index.js文件中新建vuex 的store实例 *as的意思是 导入这个文件里面的所有内容就不用一个个实例来导入了。 import Vue from vue import Vuex from vuex import * as getters from ./getters // 导入响应的模块*相当于引入了这个组件下所有导出的事例 import * as actions from ./actions import * as mutations from ./mutations Vue.use(Vuex) // 首先声明一个需要全局维护的状态 state,比如 我这里举例的resturantName const state { resturantName: 飞歌餐馆 // 默认值 // id: xxx 如果还有全局状态也可以在这里添加 // name:xxx } // 注册上面引入的各大模块 const store new Vuex.Store({ state, // 共同维护的一个状态state里面可以是很多个全局状态 getters, // 获取数据并渲染 actions, // 数据的异步操作 mutations // 处理数据的唯一途径state的改变或赋值只能在这里 }) export default store // 导出store并在 main.js中引用注册。 ③actions // 给action注册事件处理函数。当这个函数被触发时候将状态提交到mutations中处理 export function modifyAName({commit}, name) { // commit 提交name即为点击后传递过来的参数此时是 A餐馆 return commit (modifyAName, name) } export function modifyBName({commit}, name) { return commit (modifyBName, name) } // ES6精简写法 // export const modifyAName ({commit},name) commit(modifyAName, name) ④mutations // 提交 mutations是更改Vuex状态的唯一合法方法 export const modifyAName (state, name) { // A组件点击更改餐馆名称为 A餐馆 state.resturantName name // 把方法传递过来的参数赋值给state中的resturantName } export const modifyBName (state, name) { // B组件点击更改餐馆名称为 B餐馆 state.resturantName name } ⑤getters // 获取最终的状态信息 export const resturantName state state.resturantName ⑥在main.js中导入 store实例 // The Vue build version to load with the import command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from vue import App from ./App import router from ./router import store from ./store Vue.config.productionTip false /* eslint-disable no-new */ new Vue({ el: #app, router, store, // 这样就能全局使用vuex了 components: { App }, template: App/ })   ④在组件A中定义点击事件点击 修改 餐馆的名称并把餐馆的名称在事件中用参数进行传递。   ...mapactions 和 ...mapgetters都是vuex提供的语法糖在底层已经封装好了拿来就能用简化了很多操作。 其中...mapActions([clickAFn]) 相当于this.$store.dispatch(clickAFn{参数})mapActions中只需要指定方法名即可参数省略。 ...mapGetters([resturantName])相当于this.$store.getters.resturantName template div classcomponentsA P classtitle组件A/P P classtitleName餐馆名称{{resturantName}}/P div !-- 点击修改 为 A 餐馆 -- button classbtn clickmodifyAName(A餐馆)修改为A餐馆/button /div div classmarTop button classbtn clicktrunToB跳转到B页面/button /div /div /template script import {mapActions, mapGetters} from vuex export default { name: A, data () { return { } }, methods:{ ...mapActions( // 语法糖 [modifyAName] // 相当于this.$store.dispatch(modifyName),提交这个方法 ), trunToB () { this.$router.push({path: /componentsB}) // 路由跳转到B } }, computed: { ...mapGetters([resturantName]) // 动态计算属性相当于this.$store.getters.resturantName } } /script !-- Add scoped attribute to limit CSS to this component only -- style scoped .title,.titleName{ color: blue; font-size: 20px; } .btn{ width: 160px; height: 40px; background-color: blue; border: none; outline: none; color: #ffffff; border-radius: 4px; } .marTop{ margin-top: 20px; } /style     B组件同理 template div classcomponentsB P classtitle组件B/P P classtitleName餐馆名称{{resturantName}}/P div !-- 点击修改 为 B 餐馆 -- button classbtn clickmodifyBName(B餐馆)修改为B餐馆/button /div div classmarTop button classbtn clicktrunToA跳转到A页面/button /div /div /template script import {mapActions, mapGetters} from vuex export default { name: B, data () { return { } }, methods:{ ...mapActions( // 语法糖 [modifyBName] // 相当于this.$store.dispatch(modifyName),提交这个方法 ), trunToA () { this.$router.push({path: /componentsA}) // 路由跳转到A } }, computed: { ...mapGetters([resturantName]) // 动态计算属性相当于this.$store.getters.resturantName } } /script !-- Add scoped attribute to limit CSS to this component only -- style scoped .title,.titleName{ color: red; font-size: 20px; } .btn{ width: 160px; height: 40px; background-color: red; border: none; outline: none; color: #ffffff; border-radius: 4px; } .marTop{ margin-top: 20px; } /style 最后本文完全手打如需转载请注明出处谢谢如果不明白的地方欢迎给我留言哦。 github项目仓库地址https://github.com/byla678/vuexdemo.git转载于:https://www.cnblogs.com/whyuyan/p/9672177.html
http://www.zqtcl.cn/news/15691/

相关文章:

  • 做网站文字怎么围绕图片长沙有哪些大公司
  • 做外贸生意最好的网站品牌设计公司排名广州设计
  • 如何替换网站的图片石家庄住房城乡建设厅网站
  • 公司网站建设注意点工厂管理软件
  • 常州建设局网站为什么打不开衡阳网站建设制作
  • 网站大全app下载wordpress 高级字段
  • 南京红酒网站建设网站建设公司倒闭
  • 昆山品牌网站微信小程序传奇怎么制作
  • 定制网站案例网站建设海之睿
  • 有哪些好的网站建设公司厦门十大装修公司排名榜
  • 查找邮箱注册过的网站楼盘网站建设案例
  • 建设银行网站个人中心网站设计制作哪些
  • 网站开发的基础知识博达网站建设教程
  • 美团网站怎么做电商运营推广怎么做
  • 湛江网站seo企业官网图片
  • 沈阳市住房和城乡建设局网站php开源企业网站系统
  • 网站建设 三合一网站建设设计问卷
  • 网站最近收录衡阳seo排名
  • 重型机械网站开发模版wordpress文章中标签
  • 高校网站建设需求分析wordpress分页调用代码
  • 知名网站建设平台淘宝客做网站卖什么好
  • 网站google搜索优化网站建设高端定制
  • 哪个浏览器能打开那种网站辛集建设局官方网站
  • 苏州建设厅网站首页沈阳制作网站建站
  • 网站建设分金手指排名十三北京东道设计公司官网
  • wordpress 自定义结构廊坊关键词优化服务
  • 网站集约化建设方案桂林wordpress招聘
  • 手工做衣服的网站wordpress nginx 404
  • 服务器搭建网站数据库衡水营销网站建设
  • 官网网站怎么创建常德网站制作建设