摘要:
Intro Page Place your introduction and profile here. 阅读全文
摘要:
This is a blog home page demo. To use this layout, you should set both layout: BlogHome and home: true in the page front matter. For related configuration docs, please see blog homepage. 阅读全文
摘要:
express 安装 初始化新项目 npm init -y 安装express npm install express 运行 直接node xxx.js 使用nodemon,可修改后自动重新调用 安装nodemon(需全局安装):npm install -g nodemon 命令:nodemon xxx.js 阅读全文
摘要:
使用nvm切换node版本 卸载本地node cmd 输入where node 到node安装删除整个路径 下载nvm 下载链接 安装多版本node 阅读全文
摘要:
sql.js库的使用 安装 npm install sql.js 使用 const fs = require('fs'); const initSqlJs = require('sql.js/dist/sql-wasm.js'); const path = require('path'); const filebuffer = fs.readFileSync(path.resolve(__dirname, '../ignoreDir/filename.sqlite')); initSqlJs().then(function (SQL) { // Load the db // filebuffer可以不传,传了就是基于这个sqlite文件创建内存 const db = new SQL.Database(filebuffer); db.run("CREATE TABLE users (id, name, phone, address);"); db.run( `INSERT INTO users (id, name, phone, address) VALUES (23, 'John Do 阅读全文
摘要:
信息Frontmatter配置 链接 --- title: 内容标题,默认第一个h1标签,非必填 shortTitle: 短标题,会在导航栏、侧边栏和路径导航中作为首选 icon: edit date: 2022-01-12 category: - Vegetable tag: - red - round star: true sticky: true //是否在文章列表中置顶 --- 阅读全文
摘要:
1 阅读全文
摘要:
1 阅读全文
摘要:
1 阅读全文
摘要:
1 阅读全文
摘要:
1 阅读全文
摘要:
1 阅读全文
摘要:
md增强 选项卡 链接 Code ::: tabs @tab apple Apple @tab banana Banana @tab:active orange Orange ::: 阅读全文
摘要:
1 阅读全文
摘要:
默认内容 阅读全文
摘要:
api使用 文档地址 配置 登录百度账号 实名认证 创建应用 进入详情页查看AppKey和SecretKey 接入授权 授权码接入 阅读全文
摘要:
接口相关 表格 // 查询项 searchData: { // 当前页 index: 0, // 每页数据 size: 10, condition: { // 搜索关键词 keyWord: "", platform:"", // 表格头中可下拉筛选的值,多个值按照‘,’拼接 reportStatus:"" } }, 阅读全文
摘要:
aui和vue的区别 区别 aui vue 插槽 无 有 添加组件是否需要重新run 需要 不需要 计算属性在模板上写法 需要添加(),可以在上面传参(不传参不能自动更新) 不需要(),一般不传参 监视器 observers:没有newval和oldval,也无法配置deep和immediate watch:有newval和oldval,可配置deep和immediate ref 无,可以使用find/findAll/closest/parent获取组件对象 有 子传父 this.triggerEvent('get-msg', this.data.msg)// getMsg不能是驼峰 父组件:getMsg(e,val)// 第二个参数是传递的参数 this.$emit('getMsg', this.msg)父组件:getMsg(val)// 第一个参数是传递的参数 v-for 不需要key 需要key 简写 无,需要写完整的v-bind:和v-on: 有 props value:'默认值',还有个observers函数 default:'默认值' ref 无 有 ref 无 有 ref 阅读全文
摘要:
form表单相关 form属性 label-width:表单域标签的宽度(label宽度),默认auto,可设置none(没有label)、xxpx hide-required-asterisk: 隐藏必填字段的红色星号 show-type: 值为detail,所有的表单元素都是禁用 rules: 验证规则 data中定义规则 rules: { name: [ { required: true, message: '请输入活动名称',trigger: 'blur'}, { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur'} ], area: [ { required: true, message: '请选择活动区域', trigger: 'change'} ], area1: [ { required: true,type:"array", message: '请选择活动区域', trigger: 'change'} ], type: [ { type: 'array',required: true, message: 阅读全文
摘要:
git相关 sdp add操作 源代码管理 更改后面的+,添加到暂存的更改 每个文件下都可以进行操作 img.png commit操作 add操作 消息input填写备注 img.png 阅读全文