node.js中怎么將MongoDB數(shù)據(jù)同步到MySQL,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
創(chuàng)新互聯(lián)專注于企業(yè)營銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、洛龍網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5開發(fā)、商城網(wǎng)站開發(fā)、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為洛龍等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
環(huán)境
node.js
MongoDB
MySQL
npm
需要的模塊
mongoose
MySQL
準備好MongoDB中的數(shù)據(jù)
比如說:我這里要同步的是用戶表,用戶表中包含username,email,password...
通過MongoDB shell命令插入1000條數(shù)據(jù)
實現(xiàn)
mongoose的Schema我這里就不寫了,大家可以上網(wǎng)進行查看,node.js連接MongoDB和MySQL的pool看下面:
node.js連接MongoDB:https://www.jb51.net/article/98813.htm
Nodejs mysql pool使用實例:
mysql模塊為felixge/node-mysql
源碼如下:
/** * Created by kevalin on 2015/4/22. */ var express = require('express'); var router = express.Router(); var mysql = require('mysql'); var conf = require('../config/dbconnection'); //定義pool池 var pool = mysql.createPool( { host : conf.dbMysql.host, user : conf.dbMysql.user, password : conf.dbMysql.password, database : conf.dbMysql.database, port : conf.dbMysql.port } ); router.get('/', function(req, res) { var selectSites = "select *, date_format(do_time, '%Y-%m-%d %H:%i:%s') as time from siteinfo order by id"; pool.getConnection(function(err, connection) { if (err) throw err; connection.query(selectSites, function(err, rows) { if (err) throw err; res.render('sites', {title : '站點分布', results : rows}); //回收pool connection.release(); }); }); }); module.exports = router;
下面上關(guān)鍵代碼
思路:
先從MongoDB查詢數(shù)據(jù)然后通過遍歷插入MySQL中。
User.find({}, (err, user) => { if (err) res.send(err); for( let i = 0 ; i < family.length ; i ++ ) { console.log("第" + (i + 1) + "條數(shù)據(jù)"); let username = user[i].username; let email = user[i].email; let password = user[i].password; let sql = "insert into user_table(username, email, password) values ('" + username + "','" + email + "','" + password + "');"; pool.query(sql,(err, rows) => { if (err) res.send(err); res.json({ message:'數(shù)據(jù)插入成功', rows }); }); } });
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。