摘要:
<!DOCTYPE html> <html> <head> <title></title> </head> <script src="https://code.jquery.com/jquery-3.4.1.min.js" type="text/javascript" charset="utf-8" 阅读全文
摘要:
登录 注册 阅读全文
摘要:
id: name: 添加 搜索内容: {{i.id}} {{i.name | update}} {{i.date}} 删除 阅读全文
摘要:
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 要 阅读全文
摘要:
<!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 阅读全文
摘要:
{{val.id}}--------{{val.name}} 阅读全文
摘要:
<!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}} <! 阅读全文
摘要:
<!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 阅读全文
摘要:
<!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 阅读全文
摘要:
v-bind绑定属性不需要加""{{}}"" 可简写为一个":" <input type="" name="" :value="msg" :title='msg'> <input type="" name="" v-bind:value="msg" v-bind:title='msg'> 也可以加拼 阅读全文
摘要:
v-cloak 的作用和用法 可用v-text 替换 但是有区别 用法: 这个指令保持在元素上直到关联实例结束编译。和 CSS 规则如 [v-cloak] { display: none } 一起用时,这个指令可以隐藏未编译的 Mustache 标签直到实例准备完毕。官方API <div id="a 阅读全文
摘要:
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... 阅读全文
摘要:
--stdin This option is used to indicate that passwd should read the new password from standard input, which can be a pipe. 这个选项用于从标准输入管道读入新的密码。 使用 ech 阅读全文
摘要:
df | grep '/$'| awk '{print $(NF-1)}' | awk -F'%' '{print $1}' 阅读全文
摘要:
1.cut,将一行内的数据进行分解cut -d '分隔符' -f fieldscut -c 字符范围-f 取出第几段的意思 ,从1开始例:echo $PATH | cut -d ':' -f 3,5export | cut -c 12- 2.grep 分析一行数据grep [-acinv] [--c 阅读全文
摘要:
nohup或screen 阅读全文
摘要:
linux命令!开头代表"最后" !$代表上一个命令的最后参数 !number 代表执行history列表第几个命令 !string 找到相关命令 !da ->date !! 执行上一个命令 如果正vim编辑一个命令 ctrl+z退出 然后 fg 回到编辑 阅读全文
摘要:
Linux source命令: 通常用法:source filepath 或 . filepath 功能:使当前shell读入路径为filepath的shell文件并依次执行文件中的所有语句,通常用于重新执行刚修改的初始化文件,使之立即生效,而不必注销并重新登录。例如,当我们修改了/etc/prof 阅读全文
摘要:
1. #!/bin/bashpython -c 'print "111";' 2. #!/bin/bashpython <<EOF #开始符合和结束符合相同 print '11'EOF 加个"-"最下面的EOF就可以不是行头但必须是 "tal" 1、考虑下面的需求,在主shell执行命令,进入其他的 阅读全文
摘要:
function filterEmoji($str) { $str = preg_replace_callback('/./u',function (array $match) { return strlen($match[0]) >= 4 ? '' : $match[0]; },$str); return $str; } 阅读全文
摘要:
git init 通过git init命令把这个目录变成Git可以管理的仓库 git add 文件名 用命令git add告诉Git,把文件添加到仓库(暂存区域) git commit -m "wrote a readme file" 用命令git commit告诉Git,把文件提交到仓库: git 阅读全文
摘要:
操作系统:Centos,Ubuntu,Redhat,suse,Freebsd 网站服务:nginx,apache,lighttpd,php,tomcat,resin数据 库:MySQL,MariaDB,PostgreSQL DB中间件:maxscale,MyCat,atlas,cobar,amoeb 阅读全文
摘要:
命令 功能说明 线上查询及帮助命令(2个) man 查看命令帮助,命令的词典,更复杂的还有info,但不常用。 help 查看Linux内置命令的帮助,比如cd命令。 文件和目录操作命令(18个) ls 全拼list,功能是列出目录的内容及其内容属性信息。 cd 全拼change directory 阅读全文