时间:2021-05-26
mongodb模糊查询并分页
1.建立数据库
代码如下:
var mongoose = require('mongoose');var shortid = require('shortid');var Schema = mongoose.Schema;var IndexDataSchema = new Schema({ _id: { type: String, unique: true, 'default': shortid.generate }, type: String, city: String, name:string, value: [{name: String, value: String}], create: {type: Date, default: Date.now}, expand: String});IndexDataSchema.statics = { defaultSort: {'create': 1}, defaultOptions: {'pageSize': 0}};var IndexData = mongoose.model('IndexData', IndexDataSchema);module.exports = IndexData;页面布局 这里只需要搜索框和搜索按钮,再点击按钮时,执行search()方法并发送请求
代码如下:
<div class="searchPart"> <input type="text" class="form-control" id="txtSearch" placeholder="请输入项目名称"> <button class="btn btn-success search_btn" onclick="search()">搜索</button> </div> <script> var paginObj; //设置每页显示页码 var pageSize = 20; //设置当前页码为1 var currentPage = 1; var condition = {'city': currentCityId, 'name': ''} jQuery(document).ready(function () { refresh(); }); //获取查找条件 function getCondition() { var name = $('#txtSearch').val(); if (name && name.trim()) { // {'$regex': name, '$options': 'i'}}为模糊查询固定语法,name为参数 condition = {'city': currentCityId, 'name': {'$regex': name, '$options': 'i'}}; } else { condition = {'city': currentCityId} } return condition; } //刷新页面 function refresh() { //查找内容 $.get('/Manage/list/projects', { 'pageSize': pageSize, 'currentPage': currentPage, 'condition': getCondition() }, function (result) { appendData(result.data); })//查找个数 $.get('/Manage/listCount/projects', {'condition': condition}, function (result) { paginObj = new DataPagin(document.querySelector('.projects-list'), result.count, { 'pageSize': pageSize, 'changePageFun': rquestPageData }); }) }//重新分页 function rquestPageData(currentPage, callback) { $.get('/Manage/list/projects', { 'pageSize': pageSize, 'currentPage': currentPage, 'condition': getCondition() }, function (result) { appendData(result.data); }) if (callback) { callback(); } }//改变页码,显示相应的内容 function changePage(paginObj, index) { paginObj.setPageNumber(index); } function appendData(data) { //debugger; var list = $('.projects-list').children('tbody'); list.html(''); // 页面显示模板 for (var i = 0; i < data.length; i++) { ......... //此部分自己定义 }) } //点击搜索按钮执行该方法 function search() { currentPage = 1; refresh(); }</script>到数据库查找并返回相应内容
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
前言Mongoose是在node.js异步环境下对mongodb进行便捷操作的对象模型工具那么要使用它,首先你得装上node.js和mongodb,关于mong
本文实例讲述了Node.js操作MongoDB数据库。分享给大家供大家参考,具体如下:Node.js操作MongoDBnpminitnpmimongodb--s
node.js操作MongoDB时,需要安装mongodb包1、使用npm安装cnpmnpminstall-gcnpm--registry=https://re
安装express$npminstallexpress--save在node.js中,我们最常用的框架就是expressExpress是一个基于Node.js平
本文实例讲述了node读写Excel操作。分享给大家供大家参考,具体如下:目支持写Excel的node.js模块:node-xlsx:基于Node.js解析ex