报错信息 Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.4.0:generate (default-cli) on project doc-cms: Execution default-cl ...
RN项目凡是看到 Can’t find variable: XXX 均是由于没有 从react-native 中导入 所引起的 比如: 你使用<Image/> 你必须在头部导入Image import { Platform, StyleSheet, Text, View, Image, ImageR ...
分类:
其他好文 时间:
2020-06-02 13:01:27
阅读次数:
75
装饰者模式(Decorator) 装饰者模式(Decorator):动态地将责任附加到对象上。若要扩展功能,装饰者提供了比继承更有弹性的替代方案。 装饰者模式结构: 抽象构件(Component)角色:给出一个抽象接口,以规范准备接收附加责任的对象。 具体构件(ConcreteComponent)角 ...
分类:
其他好文 时间:
2020-06-02 11:42:00
阅读次数:
47
webpack代码分割 webpack 可以帮助我们将代码分成不同的逻辑块,在需要的时候加载这些代码。使用 require.ensure() 来拆分代码require.ensure() 是一种使用 CommonJS 的形式来异步加载模块的策略。在代码中通过 require.ensure([<file ...
分类:
Web程序 时间:
2020-06-02 11:12:22
阅读次数:
80
编写spring的配置文件: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLS ...
分类:
其他好文 时间:
2020-06-01 23:29:30
阅读次数:
61
npm Less npm install less less-loader --save 未验证下面这行是否必须 npm i style-resources-loader -D vue.config.js // vue.config.js const path = require('path') m ...
分类:
其他好文 时间:
2020-06-01 20:42:19
阅读次数:
159
React使用Echarts报错Component series.line not exists. Load it first.(刚开始正常,后来页面刷不出来,一片空白) 解决 import echarts from 'echarts/lib/echarts'; 改为 import echarts ...
分类:
其他好文 时间:
2020-06-01 20:40:30
阅读次数:
126
官方文档:https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html web-view 属性 类型 默认值 必填 说明 最低版本 src string 否 webview 指向网页的链接。可打开关联的公众号的文章, ...
分类:
微信 时间:
2020-06-01 13:28:26
阅读次数:
329
1、配置alias 在vue.config.js里:红色部分 const path = require('path'); module.exports = { configureWebpack: { resolve: { alias: { '@': path.resolve(__dirname, ' ...
分类:
Web程序 时间:
2020-06-01 11:52:51
阅读次数:
309
Vue动态组件 1.component:动态组件放的位置 2.is:绑定动态参数名称的属性和bind联合使用 3.keep-alive:保存当前改变的值 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name ...
分类:
Web程序 时间:
2020-05-31 22:07:00
阅读次数:
108