今天在学nodejs的时候,遇到一个错误;刚开始完全不知道说的是什么,为什么会出现这个错误 DeprecationWarning: Mongoose: mpromise (mongoose's default promise library) is deprecated, plug in your own promise library instead; 因为我是调用数据的库的方法中使用了then()方法; User.findOne({ username: username//查询条件}).th…
操作数据库的时候,老是提示:Mongoose: mpromise (mongoose's default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html 增删改都没有问题,但是很影响排错. 解决办法:在连接数据库的时候,添加mongoose.Promise = global.Promise; mongoose.con…
https://github.com/cesanta/mongoose http://ltp.ai/docs/ltpserver.html LTP Server在轻量级服务器程序mongoose基础上开发.在编译LTP源码之后,运行`./bin/ltp_server`就可以启动LTP Server.:…
原文地址 使用mongoose进行数据库操作时,总是提示: (node:5684) DeprecationWarning: Mongoose: mpromise (mongoose's default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html 解决方法: 在var db = mongoose.connect("…
如何在aws部署项目 申请到亚马逊AWS免费账户后,我们可以拥有很多的免费云服务产品项目,其中包括: EC2云服务器. Amazon S3存储. Amazon RDS数据库. Amazon CloudFront分发服务. Mobile Analytics移动分析服务. Amazon SNS消息推送服务等等项目. Ref: 亚马逊AWS免费EC2虚拟机开通实例和部署密钥.安全策略过程 [很详细] 开放端口比较有讲究,如下: 如何关掉EC2上的镜像 Terminate Instance When y…
Switching out callbacks with promises in Mongoose Published on July 28, 2015 mongo node mongoose promises Working with promises and mongoose just became a whole lot easier with the 4.1 release, which added the ability to specify alternative promise l…
  Paul Shan 7th Jun 2015 Mongoose or mongodb native driver, which one to use? This is one of the initial queries for a node-mongo developer; and probably one of the most important ones. Because one use Object Relational Mapping (ORM) and another Obje…
前言 大家好,我是桑世龙,github和cnodejs上的i5ting,目前在天津创业,公司目前使用技术主要是nodejs,算所谓的MEAN(mongodb + express + angular + node),所有代码都部署在阿里云上 我的名字i5ting,原因是我媳妇叫张婷,哈哈 闲言少叙,下面开始正题 <Node.js最新技术栈之Promise篇> js流程控制的演进过程,分以下5部分 回调函数Callbacks 异步JavaScript Promise/a+ 生成器Generator…
/*! * jQuery JavaScript Library v3.2.1 * https://jquery.com/ * * Includes Sizzle.js * https://sizzlejs.com/ * * Copyright JS Foundation and other contributors * Released under the MIT license * https://jquery.org/license * * Date: 2017-03-20T18:59Z *…
Motivation Consider the following synchronous JavaScript function to read a file and parse it as JSON. It is simple and easy to read, but you wouldn't want to use it in most applications as it is blocking. This means that while you are reading the fi…
标准 https://promisesaplus.com/ An open standard for sound, interoperable JavaScript promises—by implementers, for implementers. A promise represents the eventual result of an asynchronous operation. The primary way of interacting with a promise is thr…
mongoose是一个NodeJs下MongoDB的ORM库.使用这个库,您从DB到表(collection)都不用创建了.只需要在项目中定义好Model. 下面就是用上一篇的代码来演示如何把mongoose的数据库操作里的回调地狱(callback hell)轻松化解掉. 上一篇Petshop的代码在这里. 打开Promise的开关 mongoose已经开启了对Promise的支持,只需要指定明确的Promise库就可以: var mongoose = require('mongoose'),…
原文:http://blog.mediumequalsmessage.com/promise-deferred-objects-in-javascript-pt1-theory-and-semantics Introduction In the not too distant past the primary tool available to JavaScript programmers for handling asynchronous events was the callback. A…
参考地址:http://ronaldroe.com/populating-multiple-fields-and-levels-with-mongoose/ 文字版本 Mongoose, the popular MongoDB library for NodeJS is incredibly robust and relatively easy to pick up. Its documentation, however leaves a little to be desired. To att…
1.why is jquery Only 32kB minified and gzipped. Can also be included as an AMD module Supports CSS3 selectors to find elements as well as in style property manipulation IE, Firefox, Safari, Opera, Chrome, and more 2.Downloading jQuery using Bower jQu…
mongodb和mongoose模块 数据库 数据库有关系型数据库(MySQL)和非关系型数据库(mongodb),两者的语法和数据存储形式不一样. mySQL 关系型数据库 类似于表格的形式,每一条数据都是以id为标识 table thead name sex age id tbody May female 18 1 Simple male 25 2 mongodb 非关系型数据库 集合,相当于表的概念,Bson,一条数据代表一个文档(数据的基本单位) { id : name : May ag…
Awesome系列的JavaScript资源整理.awesome-javascript是sorrycc发起维护的 JS 资源列表,内容包括:包管理器.加载器.测试框架.运行器.QA.MVC框架和库.模板引擎.数据可视化.时间轴.编辑器等. 前端MVC框架与库 angular.js - 前端MVVM框架,支持双向绑定,实现MVC架构,增强Web应用 aurelia - A Javascript client framework for mobile, desktop and web. backbo…
原文链接: https://github.com/dypsilon/frontend-dev-bookmarks Frontend Development Looking for something else? Take a look at the awesome collection of other awesome lists. Guides Bento: a collection of guides for web development. Hack Design: An easy to…
   每次想要使用这个js时,总是要到官网上下载,太麻烦,现在把它收录了 jquery-1.11.1.js /*! * jQuery JavaScript Library v1.11.1 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors * Released under…
Node操作MongoDB数据库 原文链接:http://www.xingxin.me/ Web应用离不开数据库的操作,我们将陆续了解Node操作MongoDB与MySQL这是两个具有代表性的数据库,非关系型数据库(NoSQL)及关系型数据库(SQL).这一节,我们主要了解node中使用MongoDB,并与express结合实现一个简单图书管理小应用 我们来简单看看关系型数据库与非关系型数据库 非关系型数据库-NoSQL 在NoSQL之前,数据库中SQL一支独秀.随着web2.0的快速发展,非关…
1.Jquery的简单介绍 1)Jquery由美国人John Resig创建.是继prototype之后又一个优秀的JavaScript框架. 2)JQuery能做什么?JQuery能做的普通的Dom能做,普通Dom能做的JQuery也能做.        3)JQuery的优点: 轻量级的js库(压缩后32kb左右),兼容css3 使用简单方便 – 宗旨:Write Less, Do More.写得少,做得多.吃得少干得多 链式编程 $("#div1").show().css(&qu…
WebService可以有很多种调用方式,除了之前说的,还可以有jquery.拿原生的Ajax做调用,拿jquery怎么调用啊?原生的能调,jquery指定也能调.原生的Ajax是通过网页直接点HTML文件就能访问,它不行.它得放到web容器里面,因为它有跨域问题.jquery得放到web项目里面,把web项目发布到服务器里才能访问.java项目,不能放这里面. web项目cxf-web-4jquery-client得有一个页面,这个页面是用来调用的. Ajax也有contentType. 想调…
这是一个非常有意思的项目,我们先来看看效果 这个项目所用的技术也比较有意思,它的技术栈为vue2.5 + Typescript + vuex + vue-router 放下博主的项目地址吧,https://github.com/xiaomuzhu/vue-ts-daily 接下来我们一起看项目代码吧,也一起研究ts怎么在vue中进行使用 首先是入口文件main.ts //main.ts // 本质上和写js一样 import Vue from 'vue'; // 解决300ms点击延迟问题 im…
/*! * jQuery JavaScript Library v3.4.1 * https://jquery.com/ * * Includes Sizzle.js * https://sizzlejs.com/ * * Copyright JS Foundation and other contributors * Released under the MIT license * https://jquery.org/license * * Date: 2019-05-01T21:04Z *…
jQuery.queue 1."fx"是什么? 队列动画的默认名称 队列的名字为type + "queue",默认是"fxqueue" 2.队列存储于内部jQuery._data的内部数据上 3.如果传递了数据,则直接合并到现有的数据里面 4.最后返回了一个数组 jQuery.dequeue 1.会推出队列的第一个函数,以便后面进行执行 2.同时会用当前的type名称存储一个hooks,作为最后清理data的函数,并作为每次执行时的第三个参数,这…
一..背景: 曾经在工作中接触过STM32一段时间,但没有深入的去学习,只是用前辈搭建好的模型来实现一些功能罢了,俗话说的好,大树底下好乘凉,开发确实轻松了,可是不深究点,又觉着心里不踏实,然而也一直没花时间去深究.刚好,最近需要重新使用STM32,完全自己开发,没想到今天一上来就让我碰上个不小的问题,废话不多说,进入正题. 二.正文: 在使用串口的时候,代码可以正常编译,没有报任何错误,烧录进MCU内,就是看不到程序正常运行的现象,而把串口部分注释掉就没问题.进入调试模式,发现代码停在 "BK…
The C10K problem [Help save the best Linux news source on the web -- subscribe to Linux Weekly News! ] It's time for web servers to handle ten thousand clients simultaneously, don't you think? After all, the web is a big place now. And computers are …
http://www.android-doc.com/guide/topics/manifest/manifest-intro.html The following sections describe how some Android features are reflected in the manifest file. Intent Filters The core components of an application (its activities, services, and bro…
Prism框架需要在应用程序启动的时候进行一些初始化的工作,Bootstrapper就是来做这些的,是其切入点. Bootstrapper主要要做的事有:创建和配置module catalog,创建DI Container,为UI配置默认的region适配器,创建和初始化shell以及初始化module. /// <summary> /// Base class that provides a basic bootstrapping sequence and hooks /// that sp…
[转]IP_ADD_MEMBERSHIP : 组播错误 的解决方法: http://www.cnitblog.com/dvb-dvb/archive/2012/10/15/aa.html by default live library includes winsock.h through windows.h instead of winsock2.h, but requires Winsock 2 in  initializeWinsockIfNecessary(...) function.IP…