Node
浮沉半生
从事前端开发,喜欢探究源码,研究新技术。
展开
-
Express 的基本使用
本文从安装、用法、常用 API 等方面简单介绍了 Express 的用法。原创 2019-08-14 21:01:57 · 6853 阅读 · 0 评论 -
MongoDB 数据库安装教程
windows 系统下安装 MongoDB进入下载中心选择需要的版本选择操作系统选择 MSI 格式点击 Download 按钮进行下载下载完成后,直接打开,进行安装,一路 Next,使用默认路径即可安装完成,一版会默认放在 C 盘下的 Progran Files\MongoDB 文件夹将 C:\Progran Files\MongoDB\Server\4.2...原创 2019-09-28 14:39:13 · 433 阅读 · 0 评论 -
MonogoDB 数据库基本使用和常用命令
本文简单介绍了 mongodb 数据库的基本概念以及基础用法一、简介MongoDB 是为快速开发互联网 Web 应用而设计的数据库系统MongoDB 的设计目标是极简、灵活、作为 Web 应用栈的一部分MongoDB 的数据模型是面向文档的,所谓文档,是一种类似于 JSON 的结构,简单理解 MongoDB 这个数据库中存的是各种各样的 JSON(BJSON)二、相关概念及名词...原创 2019-09-28 14:40:58 · 1332 阅读 · 0 评论 -
Nest使用mongodb提示:To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect
问题:在 Nest 中使用 mongodb 数据库进行数据库连接时提示警告:(node:79342) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUr...原创 2019-09-28 14:42:14 · 936 阅读 · 0 评论 -
Nest 中使用 mongoose 的 findOneAndUpdate 方法时出现警告的解决办法
问题使用 mongoose 的 findOneAndUpdate 方法更新文档时提示:(node:11135) DeprecationWarning: Mongoose: findOneAndUpdate() and findOneAndDelete() without the useFindAndModify option set to false are deprecated.解决办法...原创 2019-09-28 14:43:13 · 1099 阅读 · 0 评论 -
使用 mongoose 的 count() 方法获取数据长度时出现警告的解决办法
将 count() 替换为 countDocuments() / estimatedDocumentCount()countDocuments():符合查询条件的数目长度estimatedDocumentCount():忽略查询条件,返回所有数据的数目长度...原创 2019-09-28 14:43:58 · 2630 阅读 · 1 评论 -
Nest 中使用 Websocket 给所有客户端发送广播的办法
如没有看过 Nest 官网的 WebSocket 用法,请先查看官网的使用方式:[传送门](https://docs.nestjs.cn/6/websockets)按照官网的方式,进行多个回复,发现还是只有当前的客户端能接收到返回信息,其他客户端都收不到广播,这下面是官网的代码:@SubscribeMessage('events')handleEvent(client: Client, ...原创 2019-09-28 14:44:58 · 3078 阅读 · 0 评论 -
Nest 中在当前模块使用其他模块 service 的方式
当前模块使用其他模块 service 方式将其他模块的 module 导入到 当前模块 module 文件中的 imports 中在当前模块需要的地方,比如 controller 或 service 文件中引入其他模块的 service,并在对应文件的 constructor 函数参数中使用 private readonly otherService: otherService 的方式...原创 2019-09-28 14:45:23 · 8034 阅读 · 0 评论