[注]:這些**都是基於nodejs進行的.
在nodejs目錄下建立乙個模組檔案*.js,以便呼叫,
以下是模組**:
function
mongodbmodel
(dbname,dataform)
/*這裡是插入資料*/
this.insert = function
(data,callback) )})}
/*這裡是刪除資料*/
this.remove = function
(data,callback))})}
/*這裡是修改*/
this.update=function
(data,updata,callback))})}
/*這裡是查詢*/
this.find=function
(data,callback))})}
}module.exports = mongodbmodel;
如何使用:
在同目錄下建立乙個呼叫檔案*.js
var mongodbmodel =
require('./mongodbmodel');
var mongodbobject =
new mongodbmodel('seraph','singer');
mongodbobject.init();
/*這裡是插入*/
mongodbobject.insert(,function(err,data)else
})/*這是刪除*/
mongodbobject.remove(,function(err,data)else
})/*這裡是修改*/
mongodbobject.update(,},function(err,data)else
})/*這裡是條件查詢*/
mongodbobject.find(,function(err,data)else
})
相關引數:
dbname:是指要操作的database;
dataform:是指要操作的資料表;
data:表示需要插入或者查詢或者修改的資料;
updata:表示修改後的資料;
個人在封裝的時候,callback()是個難點
C 操作MongoDB的幫助類 簡單封裝
好了,不多說,直接把dll和 記下來,以便以後直接使用。c 版的mongodb驅動是用官方提供的mongo csharp driver 引用 mongodb.driver.dll,mongodb.bson.dll 具體 部分 mongodb幫助類 public class mongodbhelper...
自己封裝的SQLSERVER 資料操作類
作者 vernon start 建立時間 2010 3 5 email 87690816 qq.com 說明 對資料操作的乙個類 增,刪,改,查 using system using system.collections.generic using system.text using system....
自己封裝的ajax
itcast web created by lsy on 2016 5 24.1.請求的型別 type get post 2.請求位址 url 3.是非同步的還是同步的 async false true 4.請求內容的格式 contenttype 5.傳輸的資料 data json物件 6.響應成功...