摘要: 模板引擎是第三方模块。 让开发者以更加友好的方式拼接字符串,使项目代码更加清晰、更加易于维护。 在命令行工具中使用 npm install art-template 命令进行下载 使用const template = require('art-template')引入模板引擎 告诉模板引擎要拼接的数 阅读全文
posted @ 2021-03-10 23:34 全情海洋 阅读(732) 评论(0) 推荐(0) 编辑
摘要: 利用mongoose创建数据库,基本操作 // 引入mongoose第三方模块 用来操作数据库 const mongoose = require('mongoose'); // 数据库连接 mongoose.connect('mongodb://localhost:27017/playground' 阅读全文
posted @ 2021-03-10 15:37 全情海洋 阅读(5184) 评论(0) 推荐(0) 编辑