- 博客(12)
- 收藏
- 关注
原创 安装elemenUI或axios
1.elemenUI1.1 命令:npm i element-ui -S1.2 在main.js中添加以下代码:importElementUIfrom'element-ui'import'element-ui/lib/theme-chalk/index.css'Vue.use(ElementUI)2.axios2.1 命令:npm install axios -Snpm install --save vue-axios2.2 在main.js中添加以下代...
2021-12-01 19:39:08
205
转载 PowerDesigner设计Name和Comment 替换
在 PowerDesigner中操作如下PowerDesigner-->Tools-->Execute Commands-->Edit/Run Scripts 下执行就OK了。执行代码--------------------------------把comment 覆盖name 方法如下:Option ExplicitValidationMode = TrueInteractiveMode = im_BatchDim mdl ...
2021-11-23 16:24:46
260
转载 Eclipse项目怎么导入IDEA中并运行(最全步骤)
https://jingyan.baidu.com/article/2a13832843c2e0464a134f9f.html
2021-11-22 21:42:18
676
原创 安装 MySQL ODBC运行库问题
安装 MySQL ODBC 连接器时,可能会出现以下错误:Error 1918. Error installing ODBC driver MySQL ODBC 5.3 ANSI Driver, ODBC error 13: The setup routines for the MySQL ODBC 5.3 ANSI Driver ODBC driver could not be loaded due to system error code 126: the specified module coul
2021-11-22 19:57:57
1496
原创 MySql ODBC下载问题
MySql ODBC下载必须与MySql版本对应,否则无法安装。MySql对应MySql ODBC版本可以通过以下方式查看:1.进入MySQL Installer - Community;2.点击右侧Add;3.选择MySQL Connectors,然后找到对应版本。下载地址:https://cdn.mysql.com/archives...
2021-11-22 19:31:35
917
原创 前后端数据交互:JSON.stringify()和JSON.parse()
JSON.stringify()将JSON对象转为JSON格式的字符串;String str = JSON.stringify({name:"aa",sex:"男"});则:str = "{name:'aa',sex:'男'}";JSON.parse()将JSON格式字符串转为JSON对象。json =JSON.parse(str); 则:json ={name:"aa",sex:"男"};...
2021-11-12 14:44:52
495
原创 求两个非负整数的最大公约数——欧几里得算法
public static int gcd(int p,int q){ if(q == 0) return p; int r = p % q; return gcd(q, r);}
2021-11-05 18:28:16
267
原创 request获取表单的值
1.request.getParameter(key): 该方法根据表单name获取对应的值,获取多少个值就执行多少次该方法。2.request.getParameterMap(): 该方法得到的数据为Map<String,String[]>类型,采用String数组是防止表单中存在存在相同name,且该方法得到的值只能读不能改。...
2021-11-05 11:37:38
930
原创 vue全局变量
/***新建一个.js文件,安装使用vuex实现vue全局变量,并将vuex交给vue管理*/import Vue from 'vue'import Vuex from 'vuex'Vue.use(Vuex);const store = new Vuex.Store({ state: { item_id:localStorage.getItem("item_id")?localStorage.getItem("item_id"):'', item_name:lo.
2021-11-04 18:26:09
193
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人