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

浏览器网站建设的步骤过程泉州网站建设哪里好

浏览器网站建设的步骤过程,泉州网站建设哪里好,360建筑网密码忘了,七个2wordpress一、导言 1、引言 Vuex是一个用于Vue.js应用程序的状态管理模式和库。它建立在Vue.js的响应式系统之上#xff0c;提供了一种集中管理应用程序状态的方式。使用Vuex#xff0c;您可以将应用程序的状态存储在一个单一的位置#xff08;即“存储”#xff09;中#xff0c;…一、导言 1、引言 Vuex是一个用于Vue.js应用程序的状态管理模式和库。它建立在Vue.js的响应式系统之上提供了一种集中管理应用程序状态的方式。使用Vuex您可以将应用程序的状态存储在一个单一的位置即“存储”中并且通过使用可预测的方式来修改它即“提交”和“派遣”更改。 2、vuex核心概念 Vuex分成五个部分 State状态存储应用程序的状态可以通过一个单一的对象来表示。单一状态树 Mutations变化修改状态的唯一方法。每个mutation都是一个事件包含一个类型和一个处理函数用于实际修改状态。状态获取 Actions动作类似于mutations但可以包含异步操作。Action提交mutation来修改状态而不是直接修改。触发同步事件 Getters获取器用于从存储中获取派生状态。相当于Vue组件中的计算属性。提交mutation可以包含异步操作 Module将vuex进行分模块 3. vuex使用步骤 3.1、安装 npm install vuex -S npm i -S vuex3.6.2 3.2、创建store模块分别维护state/actions/mutations/getters store         state.js         actions.js         mutations.js         getters.js 再使用index.js把四个js文件包裹起来 3.3、在store/index.js文件中新建vuex的store实例并注册上面引入的各大模块 import Vue from vue import Vuex from vuex import state from ./state import getters from ./getters import actions from ./actions import mutations from ./mutations Vue.use(Vuex) const store new Vuex.Store({state,getters,actions,mutations})export default store 3.4、在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 //开发环境下才会引入mockjs // process.env.MOCK require(/mock) // 新添加1 import ElementUI from element-ui // 新添加2避免后期打包样式不同要放在import App from ./App;之前 import element-ui/lib/theme-chalk/index.cssimport App from ./App import router from ./router import store from ./store// 新添加3----实例进行一个挂载 Vue.use(ElementUI) Vue.config.productionTip falseimport axios from /api/http import VueAxios from vue-axiosVue.use(VueAxios, axios)/* eslint-disable no-new */ new Vue({el: #app,router,store,//定义变量data() {return {Bus: new Vue()}},components: {App},template: App/ }) 最后进行编码就可以使用vuex的相关功能 二、取值存值 1、前期准备 再创建好在store里面的js文件里面进行操作 state.js export default {stateName:王德法 } mutations.js export default {// state state.js文件中导出的对象payload是vue文件传过来的参数setName: (state, payload) {state.stateName payload.stateName} } getters.js export default {// state state.js文件中导出的对象payload是vue文件传过来的参数getName: (state) {return state.stateName;} } 最后在index.js里面配置好文件 index.js import Vue from vue import Vuex from vuex import state from ./state import getters from ./getters import actions from ./actions import mutations from ./mutationsVue.use(Vuex)const store new Vuex.Store({state,getters,actions,mutations })export default store 2、取值 在写好的页面进行操作的取值 templatedivh2页面一/h2button clickin1获取state值/button/div /template script export default {data() {return {msg: 页面一默认值}},methods: {in1() {let stateName this.$store.state.stateName;alert(stateName)}} } /scriptstyle scoped/style 在取值的this.$store.state.stateName我们不是推荐的我们推荐使用this.$store.getters.getName效果是一样的 3、存值 在取值的基础上加上存值的方法 templatedivh2页面一/h2请输入内容input v-modelmsg/button clickin1获取state值/buttonbutton clickin2改变state值/button/div /template script export default {data() {return {msg: 页面一默认值}},methods: {in1() {let stateName this.$store.state.stateName;alert(stateName)},in2() {this.$store.commit(setName, {stateName: this.msg})}} } /scriptstyle scoped/style 我们也可以使用第二个页面进行存取值 templatedivh2页面二/h2{{ msg }}{{ updName}}/div /template script export default {data() {return {msg: 页面二默认值}},computed: {updName() {// return this.$store.state.stateName;return this.$store.getters.getName;}} } /scriptstyle scoped/style 三、异步加载 1、什么是异步请求 在Vuex中异步请求通常是指通过网络发送的异步操作例如从服务器获取数据或向服务器发送数据。         在Vuex中可以使用异步操作来更新存储在状态库中的数据。常见的异步请求包括使用Ajax、axios等库发送HTTP请求或者使用WebSocket进行实时通信。         通过这些概念的配合可以在Vuex中处理异步请求并将响应的数据保存到状态库中以便在应用程序中使用。 Actions动作Actions是Vuex中用于触发异步请求并提交mutation的地方。通过定义actions来描述应用程序中的各种操作如从服务器获取数据、异步更新状态等。在actions中可以使用异步代码并在需要时通过commit方法提交mutation来更新状态。 Mutations变化Mutations是Vuex中用于修改状态的地方。异步请求通常是在actions中进行的当异步操作完成后actions会调用commit方法来触发对应的mutation从而修改状态。 Getters获取器Getters是Vuex中用于从状态中获取数据的地方。可以在getters中定义一些计算属性通过对状态进行处理和过滤从而得到所需的数据。 2、前端异步 在actions.js里面写入方法 export default {// context vue的上下文payload是vue文件传过来的参数setNameAsync: (context, payload) {//5秒后调用调方法setTimeout(function () {context.commit(setName, payload)}, 5000)} } 在页面里面写入事件 templatedivh2页面一/h2请输入内容input v-modelmsg/button clickind异步改变值/button/div /template script export default {data() {return {msg: 页面一默认值}},methods: {ind() {// setNameAsync setNameAjaxthis.$store.dispatch(setNameAsync, {stateName: this.msg,_this:this})}} } /scriptstyle scoped/style 3、ajax请求 页面 templatedivh2页面一/h2请输入内容input v-modelmsg/button clickind异步改变值/button/div /template script export default {data() {return {msg: 页面一默认值}},methods: {ind() {this.$store.dispatch(setNameAjax, {stateName: this.msg,_this:this})}} } /scriptstyle scoped/style actions.js export default {// 利用ajax请求;context vue的上下文setNameAjax: (context, payload) {let _this payload._this;let url _this.axios.urls.VUEX_AJAX;let params {resturantName: payload.stateName}_this.axios.post(url, params).then(r {console.log(r);}).catch(e {});} } 后端方法 public JsonResponseBody? queryVuex(HttpServletRequest request) {String resturantName request.getParameter(resturantName);SimpleDateFormat sdf new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);String date sdf.format(new Date());try {System.out.println(模拟异步情况睡眠6秒不能超过10秒axios超时时间设置的是10秒);Thread.sleep(6000);System.out.println(睡醒了继续...);} catch (Exception e) {e.printStackTrace();}return new JsonResponseBody(resturantName - date,true,0,null);}
http://www.pierceye.com/news/57818/

相关文章:

  • 六安市城市建设档案馆网站北京seo公司有哪些
  • 陕西通达工程建设有限公司网站平台商业模式有哪些
  • vue做网站首页深圳高端网站定制建设
  • 无锡网络公司无锡网站制作wordpress有什么缺点
  • 福建微网站建设价格郴州做网站的
  • 唐山中小企业网站制作公司装修怎么样
  • 漳浦网站设计天元建设集团有限公司成立时间
  • 招聘 网站开发wordpress调用文章描述
  • 网站开发规划书scrm和crm如何配合
  • cnzz 网站域名怎么填宣传页在线设计软件
  • 沈阳模板建站固镇做网站多少钱
  • 三桥做网站国内外包网站
  • 百度权重查询爱站网做药的文献一般在哪些网站查找
  • 电子商务网站和普通网站的区别有用cc域名做网站的
  • 上海网站建设优化价格网站语言切换功能如何做
  • 网站备案营业执照星际网络泰安网络公司
  • 建站哪家好就要用兴田德润南通专业网站制作
  • 杭州百度seo宁波seo关键词优化设计
  • 网站开发的软硬件需求工程造价
  • 哪里培训做网站wordpress 在线运行
  • 淄博网站建设培训学校国际新闻环球网
  • 如何用wordpress做网站如何进行新产品的推广
  • 厦门网站制作软件宿州大型网站建设公司
  • 免费申请试用网站北京东直门 网站建设
  • 凡科建站快车登录北京企业建站哪家好
  • 快速做网站哪家好梧州论坛蒙山
  • 上海网站建设与设计公司中國無法訪問wordpress
  • 做网站主机几个配件做seo哪些网站会好点
  • 工业信息化部网站备案空白word个人简历模板下载
  • 公司开网站干嘛怎么做北京pk10的网站