上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: 登录 注册 阅读全文
posted @ 2019-08-12 21:25 酷酷的城池 阅读(163) 评论(0) 推荐(0) 编辑
摘要: id: name: 添加 搜索内容: {{i.id}} {{i.name | update}} {{i.date}} 删除 阅读全文
posted @ 2019-08-12 12:15 酷酷的城池 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1,插值表达式v-cloak v-html v-bind(:) v-on(@) v-model v-for v-if v-show2,事件修饰符.stop .prevent .capture .self .once3,在 VM实例中 调用data的变量必须添加 this.变量名4,在 v-for 要 阅读全文
posted @ 2019-08-12 11:08 酷酷的城池 阅读(110) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <meta charset="utf-8"> <head> <title></title> </head> <script src="./vue.js" type="text/javascript" charset="utf-8"></script> <body> <div id="app"> <input typ 阅读全文
posted @ 2019-08-12 10:56 酷酷的城池 阅读(222) 评论(0) 推荐(0) 编辑
摘要: {{val.id}}--------{{val.name}} 阅读全文
posted @ 2019-08-12 10:27 酷酷的城池 阅读(1731) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <meta charset="utf-8"> <head> <title></title> </head> <script src="./vue.js" type="text/javascript" charset="utf-8"></script> <body> <div id="app"> {{msg}} <! 阅读全文
posted @ 2019-08-11 23:27 酷酷的城池 阅读(696) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <meta charset="utf-8"> <head> <title></title> </head> <script src="./vue.js" type="text/javascript" charset="utf-8"></script> <body> <div id="app"> <div style 阅读全文
posted @ 2019-08-11 23:18 酷酷的城池 阅读(404) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <meta charset="utf-8"> <head> <title></title> </head> <script src="./vue.js" type="text/javascript" charset="utf-8"></script> <body> <div id="app"> <button ty 阅读全文
posted @ 2019-08-11 22:43 酷酷的城池 阅读(202) 评论(0) 推荐(0) 编辑
摘要: v-bind绑定属性不需要加""{{}}"" 可简写为一个":" <input type="" name="" :value="msg" :title='msg'> <input type="" name="" v-bind:value="msg" v-bind:title='msg'> 也可以加拼 阅读全文
posted @ 2019-08-11 22:03 酷酷的城池 阅读(848) 评论(0) 推荐(0) 编辑
摘要: v-cloak 的作用和用法 可用v-text 替换 但是有区别 用法: 这个指令保持在元素上直到关联实例结束编译。和 CSS 规则如 [v-cloak] { display: none } 一起用时,这个指令可以隐藏未编译的 Mustache 标签直到实例准备完毕。官方API <div id="a 阅读全文
posted @ 2019-08-11 21:56 酷酷的城池 阅读(12829) 评论(1) 推荐(1) 编辑
摘要: thread=5 tmp_fifofile=/temp/$$.fifo mkfifo $tmp_fifofile exec 8$tmp_fifofile rm $tmp_fifofile for i in `seq $thread` do echo >&8 done while : do read -u 8 { ....代码 echo >&8 }& done... 阅读全文
posted @ 2019-08-06 23:40 酷酷的城池 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: --stdin This option is used to indicate that passwd should read the new password from standard input, which can be a pipe. 这个选项用于从标准输入管道读入新的密码。 使用 ech 阅读全文
posted @ 2019-08-06 12:58 酷酷的城池 阅读(5967) 评论(0) 推荐(1) 编辑
摘要: df | grep '/$'| awk '{print $(NF-1)}' | awk -F'%' '{print $1}' 阅读全文
posted @ 2019-08-06 11:41 酷酷的城池 阅读(1881) 评论(0) 推荐(0) 编辑
摘要: 1.cut,将一行内的数据进行分解cut -d '分隔符' -f fieldscut -c 字符范围-f 取出第几段的意思 ,从1开始例:echo $PATH | cut -d ':' -f 3,5export | cut -c 12- 2.grep 分析一行数据grep [-acinv] [--c 阅读全文
posted @ 2019-08-05 22:10 酷酷的城池 阅读(2439) 评论(0) 推荐(0) 编辑
摘要: nohup或screen 阅读全文
posted @ 2019-08-05 21:55 酷酷的城池 阅读(188) 评论(0) 推荐(0) 编辑
摘要: linux命令!开头代表"最后" !$代表上一个命令的最后参数 !number 代表执行history列表第几个命令 !string 找到相关命令 !da ->date !! 执行上一个命令 如果正vim编辑一个命令 ctrl+z退出 然后 fg 回到编辑 阅读全文
posted @ 2019-08-05 21:39 酷酷的城池 阅读(272) 评论(0) 推荐(0) 编辑
摘要: Linux source命令: 通常用法:source filepath 或 . filepath 功能:使当前shell读入路径为filepath的shell文件并依次执行文件中的所有语句,通常用于重新执行刚修改的初始化文件,使之立即生效,而不必注销并重新登录。例如,当我们修改了/etc/prof 阅读全文
posted @ 2019-08-05 21:15 酷酷的城池 阅读(3674) 评论(1) 推荐(1) 编辑
摘要: 1. #!/bin/bashpython -c 'print "111";' 2. #!/bin/bashpython <<EOF #开始符合和结束符合相同 print '11'EOF 加个"-"最下面的EOF就可以不是行头但必须是 "tal" 1、考虑下面的需求,在主shell执行命令,进入其他的 阅读全文
posted @ 2019-08-05 20:58 酷酷的城池 阅读(16274) 评论(0) 推荐(0) 编辑
摘要: function filterEmoji($str) { $str = preg_replace_callback('/./u',function (array $match) { return strlen($match[0]) >= 4 ? '' : $match[0]; },$str); return $str; } 阅读全文
posted @ 2019-08-04 23:22 酷酷的城池 阅读(176) 评论(0) 推荐(0) 编辑
摘要: git init 通过git init命令把这个目录变成Git可以管理的仓库 git add 文件名 用命令git add告诉Git,把文件添加到仓库(暂存区域) git commit -m "wrote a readme file" 用命令git commit告诉Git,把文件提交到仓库: git 阅读全文
posted @ 2019-07-27 22:22 酷酷的城池 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 操作系统:Centos,Ubuntu,Redhat,suse,Freebsd 网站服务:nginx,apache,lighttpd,php,tomcat,resin数据 库:MySQL,MariaDB,PostgreSQL DB中间件:maxscale,MyCat,atlas,cobar,amoeb 阅读全文
posted @ 2019-07-25 10:11 酷酷的城池 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 命令 功能说明 线上查询及帮助命令(2个) man 查看命令帮助,命令的词典,更复杂的还有info,但不常用。 help 查看Linux内置命令的帮助,比如cd命令。 文件和目录操作命令(18个) ls 全拼list,功能是列出目录的内容及其内容属性信息。 cd 全拼change directory 阅读全文
posted @ 2019-07-25 10:08 酷酷的城池 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 四种隔离级别及应用场景 数据库提供的四种隔离级别:01:Read uncommitted(读未提交):最低级别,任何情况都会发生。02:Read Committed(读已提交):可避免脏读的发生。03:Repeatable read(可重复读):可避免脏读、不可重复读的发生。04:Serializa 阅读全文
posted @ 2019-07-24 22:42 酷酷的城池 阅读(2330) 评论(0) 推荐(0) 编辑
摘要: 传送门 https://www.houdunren.com/ 阅读全文
posted @ 2019-07-24 22:23 酷酷的城池 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 文件 我自己安装使用在Windwos10下面。 【DOSBox简介】 1. 官方网址:http://www.dosbox.com/。 2. debug功能在win7之后系统已经不自带了,即64位系统是不能直接在命令行操作中输入debug来进行相关操作的。 3. 在win10中使用debug,可以通过 阅读全文
posted @ 2019-07-13 11:58 酷酷的城池 阅读(604) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页