zhuangjie
ZhuangJie
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 40 下一页
摘要: 阅读全文
posted @ 2021-04-14 18:12 zhuangjie 阅读(1173) 评论(0) 推荐(0)
摘要: function SSU(template) { //指针 this.pos = 0; //从哪开始剪切 this.ssi = (this.prevssi=0); //result this.result = ''; //扫描 this.scanUtils = function (tg) { whi 阅读全文
posted @ 2021-04-12 21:15 zhuangjie 阅读(86) 评论(0) 推荐(0)
摘要: 这个是在windows上的教程,想要在linux上安装mysql? 点击跳转>> 1、基本准备 1)下载 https://dev.mysql.com/downloads/mysql/5.7.html 2)配置环境变量 解压你喜欢的目录下(不推荐放在C盘,如果放在C盘,下面的一些操作请尽量在管理员身份 阅读全文
posted @ 2021-04-11 19:16 zhuangjie 阅读(1691) 评论(0) 推荐(0)
摘要: function Proson(name,age) { this.name = name; this.age = age; } var proson = new Proson('小庄',21); console.log(proson); console.log(proson.__proto__ Pr 阅读全文
posted @ 2021-04-10 12:33 zhuangjie 阅读(60) 评论(0) 推荐(0)
摘要: 看有没有对应错 insert into payment(serial) values (#{serial}) 阅读全文
posted @ 2021-04-09 20:44 zhuangjie 阅读(116) 评论(0) 推荐(0)
摘要: yinymce 富文本编辑的使用 去官网: 下载完成得到: 析出(只需): 得到: 编写组件,让使用编辑器的页面面向该组件: <template> <div id="tinymce-editor"></div> </template> <script> import './tinymce.min.j 阅读全文
posted @ 2021-04-08 16:34 zhuangjie 阅读(1215) 评论(0) 推荐(0)
摘要: 1.Vue安装: npm install axios 2.面向request.js请求: request.js import axios from "axios"; //axios框架可简写为,因为axios本身就返回Promise,上面的方式只不过多穿了件相同的衣服罢了 export functi 阅读全文
posted @ 2021-04-08 15:58 zhuangjie 阅读(396) 评论(0) 推荐(0)
摘要: 首先感谢这位大哥帖子:https://www.hangge.com/blog/cache/detail_2461.html 解决如下: 在application.properties加: spring.web.resources.static-locations=classpath:/META-IN 阅读全文
posted @ 2021-03-31 20:29 zhuangjie 阅读(438) 评论(0) 推荐(0)
摘要: 默认导入导出: 导出(定义“体”): 对象:export default { ... } 函数:export default function fun() { ... } 变量:export default 12 对应的导入方式(定义“头”): import <任意名> from '模块路径' 按需 阅读全文
posted @ 2021-03-29 21:24 zhuangjie 阅读(178) 评论(0) 推荐(0)
摘要: 全转载自阮一峰大神 :跳转 Flex 布局教程:语法篇 作者: 阮一峰 日期: 2015年7月10日 网页布局(layout)是 CSS 的一个重点应用。 布局的传统解决方案,基于盒状模型,依赖 display 属性 + position属性 + float属性。它对于那些特殊布局非常不方便,比如, 阅读全文
posted @ 2021-03-24 19:00 zhuangjie 阅读(47) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 40 下一页