摘要: 1.实现功能 2.目录结构 3.代码 阅读全文
posted @ 2018-08-26 23:10 Vine.Y 阅读(2748) 评论(0) 推荐(0) 编辑
摘要: 1.实现功能 2.工具 vue 3.代码 阅读全文
posted @ 2018-08-21 12:49 Vine.Y 阅读(461) 评论(0) 推荐(0) 编辑
摘要: ```Python 我的第一个Python程序 def is_valid_date(strdate): 判断是否是一个有效的日期字符串 try: 判断是否是时间格式 if ":" in strdate and len(strdate)==5: 判断小时是否在0与24之间 if int(strdate 阅读全文
posted @ 2018-04-13 20:27 Vine.Y 阅读(219) 评论(0) 推荐(0) 编辑
摘要: Emmet插件使用 标签(空格分隔): php 前端 [TOC] 1.生成html5文档 2.header部分 3.body部分 阅读全文
posted @ 2017-11-04 18:06 Vine.Y 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1.选择 服务器--账号--修改密码 2.在密码 一栏输入新密码 3.刷新页面会得到如下页面 此时,该页面提醒我们检查配置文件中的主机、用户名和密码 4.打开配置文件 路径为 xampp -> phpMyAdmin -> config.inc.php 注意这一块,此处即为用户名和密码 将密码修改为我 阅读全文
posted @ 2017-10-31 00:08 Vine.Y 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 最近几天因为项目要用git,于是学习了一下git。今天上传项目到码云的时候,却发现总有一些文件夹上传不上去,git 也显示everything is update。找了一圈办法,都没有用,最后突然发现.gitnore.txt文件。 .gitnore.tx文件的作用正是让git忽略这些文件。 删除这些 阅读全文
posted @ 2017-10-26 17:06 Vine.Y 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 一.安装并配置 1.安装git 下载地址: 官方网站:https://git-for-windows.github.io/ 国内镜像:https://pan.baidu.com/s/1kU5OCOB#list/path=%2Fpub%2Fgit 2.配置你的个人信息 $ git config --global user.name "用户名" #你在git里面的用户名,随便写一个就好 $ g... 阅读全文
posted @ 2017-10-26 01:46 Vine.Y 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 处理页面跳转的界面: 阅读全文
posted @ 2017-09-30 22:14 Vine.Y 阅读(514) 评论(0) 推荐(0) 编辑
摘要: if(isset($_POST['export']) && $_POST['export'] == '导出所选数据') { //此处为多选框已勾选的数据 $export_id=$_POST['choose']; if($export_id !='') { $str = implode(",", $export_id); $sql =... 阅读全文
posted @ 2017-09-30 22:09 Vine.Y 阅读(642) 评论(0) 推荐(0) 编辑
摘要: /*批量上传数据*/ if(isset($_POST['submit']) && $_POST['submit']=='上传文件') { //导入类文件 require_once ("../Classes/PHPExcel.php"); require_once ("../Classes/PHPExcel/IOFactory.php"); //判断是否未选中文... 阅读全文
posted @ 2017-09-30 22:02 Vine.Y 阅读(676) 评论(0) 推荐(0) 编辑
TOP