• JS模块化

    一、理解 1、什么是模块、模块化? 将一个复杂的程序依据一定的规范封装成几个文件,并进行组合在一起 2、为什么要模块化? 降低复杂度,提高解耦性,部署方便 3、模块化的好处 避免命名冲突(减少命名空间污染) 更好的分离,按需加载 更高复用性 高可维护性 4、页面...

    2018-07-11 03:56:16

  • jquery获取父级元素、子级元素、兄弟元素

    1:$(this).parent(expr)找父亲节点,可以传入expr进行过滤,比如$("span").parent()或者$("span").parent(".class") 2:$(this).parents(expr),类似于jQuery.parent(expr),但是是查找所有祖先元素,不限于父元素 3:$(this).children(expr).返回所有子节点,这个方法...

    2018-07-11 03:56:07

  • JavaScript中的事件循环机制

    请参考阮一峰老师的精彩讲解: http://www.ruanyifeng.com/blog/2014/10/event-loop.html...

    2018-07-11 03:56:13

  • ionic3 细节注意

    一、图标和splash大小不一样 icon图标的大小尽量为1024*1024,并且不能为圆角。 splash图片的大小尽量为2732*2732,ionic1的大小为2208*2208...

    2018-07-11 03:56:06

  • Vue状态管理

    1、导出Vuex import Vuex from 'vuex' 2、定义store /* 状态管理 */ const store = new Vuex.Store({ state: { headerShow: true // 是否显示头部 }, mutations: { // 不应直接更改state,应通过mutations下的方法来更改状态 setHeaderShow(state, newValue) { this .st...

    2018-07-10 00:13:36

  • node webpack4.6简单配置

    package.json { " name " : " his-web " , " version " : " 0.0.0 " , " description " : " HisWeb " , " main " : " app.js " , " author " : { " name " : " york " }, " devDependencies " : { " @types/node " : " ^6.0.87 " , " css-loader " : " ^0.28.11 " , "...

    2018-07-09 13:48:41

  • UEditor单个图片上传遇到的问题记录

    查看了ueditor.all.js得源代码发现单图片上传是在选择文件输入框change事件执行表单Submit,但是出现一个问题 请求头没有加入Cookie ,导致后端身份认证失败,上传最终失败。 ueditor.all.js 24603行原代码: domUtils.on(iframe, 'load', callback); form.action = ut...

    2018-07-09 13:48:37

  • Vue状态管理

    1、导出Vuex import Vuex from 'vuex' 2、定义store /* 状态管理 */ const store = new Vuex.Store({ state: { headerShow: true // 是否显示头部 }, mutations: { // 不应直接更改state,应通过mutations下的方法来更改状态 setHeaderShow(state, newValue) { this .st...

    2018-07-09 13:48:05

  • Vue路由

    1、导出VueRouter import Vue from 'vue' import VueRouter from 'vue-router' 2、全局注册VueRouter插件,在组件中就可以使用this.$router 来访问路由 Vue.use(VueRouter) 3、定义路由 const routes = [ { path: '/' , component: function (resolve) { // 延迟加载模...

    2018-07-09 13:47:57

  • Node.js中文乱码解决方法

    ...

    2018-07-09 13:47:56

2