摘要:
数据模型 主要用户名,密码,邮箱,头像,身份 const mongoose = require('mongoose') const schema = new mongoose.Schema({ username: { type: String, require: true }, email: { t 阅读全文
摘要:
递归组件 关键是组件在模板内能调用自身,关键是name属性 首先我们先定义数据格式 list: [ { title: '标题1' }, { title: '标题2', children: [ { title: '标题2-子标题1' }, { title: '标题2-子标题2' } ] }, { ti 阅读全文