上一页 1 2 3 4 5 6 7 8 9 ··· 85 下一页
摘要: Vue.js 2.0 版本推荐使用 axios 来完成 ajax 请求。 Axios 是一个基于 Promise 的 HTTP 库,可以用在浏览器和 node.js 中。 Github开源地址: https://github.com/axios/axios 使用 npm: $ npm install 阅读全文
posted @ 2020-02-14 10:36 dekevin 阅读(261) 评论(0) 推荐(0) 编辑
摘要: Build Setup # clone the project git clone https://github.com/PanJiaChen/vue-admin-template.git 完成之后,修改项目名称-修改名称之后idea会提示报错,点击报错信息,然后将弹出的对话框中的git依赖“-”删 阅读全文
posted @ 2020-02-14 10:34 dekevin 阅读(3277) 评论(0) 推荐(0) 编辑
摘要: js-cookie 官方文档 里面就详细的介绍了es5怎么引用,以下是ES6以上的用户 一、安装 npm install js-cookie --save 二、引用 import Cookies from 'js-cookie' 三、一般使用1.存到Cookie去 // Create a cooki 阅读全文
posted @ 2020-02-14 09:39 dekevin 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 首先,js文件报错如下图: 以下为解决方法:点击File里的Settings 找到Languages&Frameworks下的JavaScript,把版本从默认的5.1改为6就好了 最后,apply、OK。报错就不会出现了 阅读全文
posted @ 2020-02-14 09:36 dekevin 阅读(678) 评论(0) 推荐(0) 编辑
摘要: 前言: Intellij IDEA 也提供了类似eclipse那样给maven添加依赖的方法,方法如下: 1. 打开项目的pom.xml文件,按下快捷键Alt+insert,弹出Generate框,选择Dependency 2.搜索所需jar的关键字。如图操作: 3.点击add.添加jar包成功。 阅读全文
posted @ 2020-02-13 20:47 dekevin 阅读(21948) 评论(0) 推荐(2) 编辑
摘要: 以下是来自mybatisgengertor官方解释,由谷歌翻译而成,可能理解有问题,希望大家指出来 IS NULL - 表示相关列必须为NULLIS NOT NULL - 表示相关列不能为NULL=(等于) - 表示相关列必须等于方法调用中传入的值<>(不等于) - 表示相关列不能等于方法调用中传入 阅读全文
posted @ 2020-02-12 23:37 dekevin 阅读(1249) 评论(0) 推荐(0) 编辑
摘要: MyBatis generator用数据库表生成数据代码的时候,除了生成实体的POJO以外,会同时生成Example文件,以及在mapper.xml中生成Example的sql语句。 Example类包含一个内部静态类 Criteria,利用Criteria我们可以在类中根据自己的需求动态生成sql 阅读全文
posted @ 2020-02-12 23:33 dekevin 阅读(3296) 评论(0) 推荐(2) 编辑
摘要: 如果是xml文件的话,按alt+enter 在弹框中选择 Un-inject Language/Refernece 阅读全文
posted @ 2020-02-12 23:20 dekevin 阅读(3711) 评论(0) 推荐(0) 编辑
摘要: <!-- 为了防止生成的代码中有很多注释,比较难看,加入下面的配置控制 --> <!-- 是否去除自动生成的注释 true:是 : false:否 --> <commentGenerator > <property name="suppressDate" value="true"/> <proper 阅读全文
posted @ 2020-02-12 23:17 dekevin 阅读(1499) 评论(0) 推荐(0) 编辑
摘要: <table tableName="%" enableInsert="true" enableDeleteByPrimaryKey="true" enableSelectByPrimaryKey="true" enableUpdateByPrimaryKey="true" enableCountBy 阅读全文
posted @ 2020-02-12 23:14 dekevin 阅读(1408) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 85 下一页