文章分类 -  WEB前端

web前端相关
摘要:表单 JSON序列化 https://www.cnblogs.com/hyyq/p/10945928.html json 对象转字符串 JSON.stringify(jsonObj); // 可以将 json 对象转换成字符串 字符串转 json 对象 //方法 1: var jsonObj = J 阅读全文
posted @ 2022-07-29 11:02 csj425 阅读(37) 评论(0) 推荐(0)
摘要:正则表达式 https://c.runoob.com/front-end/854/ 正整数的正则表达式(包括0):^[+]{0,1}(\d+)$ 正整数的正则表达式(不包括0):^[1-9]\d*$ 阅读全文
posted @ 2022-07-27 16:16 csj425 阅读(20) 评论(0) 推荐(0)
摘要:https://www.yuque.com/awescnb/user/kyi19z 阅读全文
posted @ 2022-06-10 17:57 csj425 阅读(9) 评论(0) 推荐(0)
摘要:WIndows宝塔安装Apache路径示例 D:\BtSoft\apache\conf\vhost\csj.conf <VirtualHost *:80> ServerAlias dav.csj.cool dav.csjcool.com ProxyPass / http://localhost:81 阅读全文
posted @ 2022-05-17 14:22 csj425 阅读(182) 评论(0) 推荐(0)
摘要:安装node.js http://nodejs.cn/download/ 升级或安装 cnpm 在用 Vue.js 构建大型应用时推荐使用 cnpm 安装,cnpm 能很好地和 Webpack 或 Browserify 模块打包器配合使用: npm install cnpm -g npm源 是npm 阅读全文
posted @ 2022-05-06 10:27 csj425 阅读(121) 评论(0) 推荐(0)