摘要:
ES5语法详解 全称 : ECMAScript 2019年发布 严格模式 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script> // 启用严格模式 'use stric 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.11.1.min.js"> </script> <script> let enter; enter = function (event){ $("#itemClose").css( 阅读全文
摘要:
今天在配置Shiro的过期时间的时候,发现整合了Ehcache的缓存,但是Ehcache的缓存又不生效,无语了 最开始参考网上的方法,配置了eternal="false",也设置了timeToIdleSeconds和timeToLiveSeconds的值,但是一直没有没有生效,没到半小时就自动登录失 阅读全文
摘要:
需求: 按照人口数量密集度,颜色由浅到深展示 实现: 基于现有的Vue3.0+4.5.13Cli框架,安装Echarts npm install echarts@4.9.0 --save 安装成功后,就可以直接使用了 <template> <div class="about"> <div ref=" 阅读全文
摘要:
Axios 功能特点 在浏览器中发送XHR请求 在Node.js中发送http请求 支持 Promise API 拦截请求和响应 支持多种请求方式 axios(config) axios.request(config) axios.get(url[,config]) axios.delete(url 阅读全文
摘要:
modules import Vue from 'vue' // 导入vuex import Vuex from 'vuex' import {INCR} from "./type"; // 通过vue安装vuex Vue.use(Vuex) /** * 创建store * @type {Store 阅读全文
摘要:
actions 异步修改状态信息,比如Ajax import Vue from 'vue' // 导入vuex import Vuex from 'vuex' import {INCR} from "./type"; // 通过vue安装vuex Vue.use(Vuex) /** * 创建stor 阅读全文
摘要:
抽取方法为常量形式 import Vue from 'vue' // 导入vuex import Vuex from 'vuex' import {INCR} from "./type"; // 通过vue安装vuex Vue.use(Vuex) /** * 创建store * @type {Sto 阅读全文
摘要:
getters 相当于组件中的计算属性,用于计算state中的数据返回计算后的值的 函数的第一个参数是 state 第二个参数是 getters可以通过这个调用getters中的其他函数 如果想要传递参数 那么需要使用闭包 return funcation(参数) 定义getters import 阅读全文
摘要:
mutations 通过创建store中的mutations字段 定义方法,方法第一个参数就是 state 然后调用方法修改 调用 this.$store.commit('方法名') 定义函数 import Vue from 'vue' // 导入vuex import Vuex from 'vue 阅读全文