前端analysis | What,Why,Who,When,Where,How

《D3》- html5元素属性

d3 svg html5
html5 比xhtml 更简洁 async 属性规定一旦脚本可用,则会异步执行。 1<script type="text/javascript" src="demo_async.js" async="async"> ...
Read more

《angular10》- 日常概念FAQ

angular
angular路由如何实现的? 两者实现模式: history,hash; hash的url携带#, history,会作为path部分。最终底层都是靠的js支持。 如何配置模块下子路由? 为何自定义元素,浏览器能识别? 底层采用CustomeElementRegistry,支持四种方法 ...
Read more

《Linux》- shell 通配符

shell 脚本
通配符有哪些? 表示任意多字符? 任意单个字符[xx] j集合中的[!xx] 非集中的[[:alpha:]] 字母 [:digiti:] 数字 [:upper:] 大写字母 [:lower:] 小写字母 [:alnum:] 字母数字 软连接 vs 硬链接 硬链接: 每个文件只有 ...
Read more

《Linux》- shell 日期相关命令

shell 脚本 date cal
date vs cal ? date 日期,cal 日历
Read more

《Linux》- shell 磁盘相关命令

shell 脚本 df free
df vs free ? df 查看磁盘空间;free 查看内存情况 为何 Linux中的文件名与命令是区分大小写的 ?Linux中存在扩展名吗? Linux并没有“文件扩展名”的概念。你想怎么命名文件都行。文件内容或用途是由其他方式来决定的 如何判定文件类型? file xx 查看文 ...
Read more

《Linux》- 登录命令

shell 脚本 login
ssh vs rlogin 有何区别? ssh会对发送内容加密,比rlogin更安全;ssh支持自动化,rlogin不支持。 ssh如何实现自动化? ssh expect 12345678910111213141516171819202122232425262728293031#!/us ...
Read more
上一页 下一页