1 2 3 4 5 ··· 7 下一页
摘要: const fs = require('fs') // 1. 定义两个工具函数 // 获取指定目录路径下的所有文件名 const getFileNames = path => { // 使用readdir获取指定目录下的所有文件名 return fs.readdirSync(path);; } // 阅读全文
posted @ 2021-01-26 10:58 佛陀 阅读(1087) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum 阅读全文
posted @ 2020-12-02 22:18 佛陀 阅读(6182) 评论(0) 推荐(0) 编辑
摘要: 1,关于文件名:必须以如下方式命名,不要乱起名,也无需专门手动控制加载哪个文件 .env 全局默认配置文件,不论什么环境都会加载合并 .env.development 开发环境下的配置文件 .env.production 生产环境下的配置文件 2,关于内容 注意:属性名必须以VUE_APP_开头,比 阅读全文
posted @ 2020-08-14 18:11 佛陀 阅读(2424) 评论(0) 推荐(0) 编辑
摘要: (function () { function initRem() { var documentElement = window.document.documentElement; var width = Math.min(documentElement.clientWidth, 750); doc 阅读全文
posted @ 2020-07-09 17:48 佛陀 阅读(123) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wanganji5252/article/details/81293082 隐藏入口index.php的整了好久 主要是phpstudy的.htaccess跟thinkphp5文档的写法不一样所导致的 所以记录下来引以为戒。 以Apache为例,需要在入口 阅读全文
posted @ 2019-11-13 14:06 佛陀 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 综合类 综合类地址 前端知识体系 http://www.cnblogs.com/sb19871023/p/3894452.html 前端知识结构 https://github.com/JacksonTian/fks Web前端开发大系概览 https://github.com/unruledboy/ 阅读全文
posted @ 2019-04-17 15:59 佛陀 阅读(308) 评论(0) 推荐(0) 编辑
摘要: https://coolshell.cn/articles/18094.html 阅读全文
posted @ 2019-04-09 12:08 佛陀 阅读(216) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/SilenceJude/article/details/81589784 阅读全文
posted @ 2019-03-22 15:26 佛陀 阅读(333) 评论(0) 推荐(0) 编辑
摘要: function createFrame(url) { var s = '<iframe name="mainFrame" scrolling="auto" frameborder="0" src="' + url + '" style="width:100%;height:100%;"></ifr 阅读全文
posted @ 2018-09-27 17:06 佛陀 阅读(117) 评论(0) 推荐(0) 编辑
摘要: <script> function createFrame(url) { var s = '<iframe name="mainFrame" scrolling="auto" frameborder="0" src="' + url + '" style="width:100%;height:100 阅读全文
posted @ 2018-09-25 10:10 佛陀 阅读(260) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 7 下一页