1 /** 2 * @deprecated :冒泡排序 3 */ 4 public class Demo03 { 5 public static void main(String[] args) { 6 int [] a ={1 ,56 ,5 ,63 ,9 ,4 ,23 ,96}; 7 int[] Read More
posted @ 2022-04-02 16:39 青青菜 Views(23) Comments(0) Diggs(0) Edit
在做vue element 项目中,做了一个新增 打开弹框的功能,想每次点击新增的时候表单项重置。1.使用了this.$refs[formName].resetFields();2.但是报错了,原因是:mouted加载数据以后,隐藏的弹出框并没有编译渲染进dom里面。所以click弹出的时候$ref Read More
posted @ 2022-03-15 17:20 青青菜 Views(2109) Comments(0) Diggs(0) Edit
vue弹框页面 <el-form :model="ruleForm" ref="ruleForm" label-width="100px" class="demo-ruleForm"><el-row :span="10">....</el-row></el-from>出现这个问题,没有将外层嵌套 < Read More
posted @ 2022-03-15 15:36 青青菜 Views(534) Comments(0) Diggs(0) Edit
原因:没有做好子查询约束条件 解决方法:1.加 AND ROWNUM =1 条件 但筛选结果可能并非一定是你想要的 2.匹配查询唯一约束条件 Read More
posted @ 2022-02-28 19:31 青青菜 Views(1115) Comments(0) Diggs(0) Edit