nodejs then的用法:1、在nodejs下安裝mysql模組;2、透過「require()」方法引入js;3、透過「Mysql.updateMysql(Name,Path).then(... )”方式使用then即可。
本文操作環境:windows7系統、nodejs10.16.2版、Dell G3電腦。
nodejs 中.then的使用
在nodejs中我們怎麼使用.then來傳回結果集呢
1、nodejs下安裝mysql模組
npm install mysql
2、這裡是我們Mysql.js的配置以及函數
//引入数据库 var mysql=require('mysql'); //实现127.0.0.1本地链接 var DATABASE = "test"; var table='test' var connection = mysql.createConnection({ host:'127.0.0.1', user:'root', password:'root', port:'3306', database: DATABASE }); //修改数据 function updateMysqlToken(Id,Name,Path) { console.info('select Name====' + Name); console.info('select Path====' + Path); var Name = Name; var Path = Path; //主要是这里对Promise的使用,只有Promise才能使用.then return new Promise(function (resolve,reject){ //定义我们的sql var updateSql = 'UPDATE ' + table +' set Name = ?, Path = ?, where Id = ? '; //这里对应sql的字段 var updateParams = [Name,Path,Id]; //nodejs的执行 connection.query(updateSql,updateParams, function(err, rows, fields ) { if (err){ reject(err) } // console.log( `The solution is: ${rows.length } ` ); console.info(` the getRowByPkOne sql ${updateSql}`) if( !rows || rows.length == 0 ) resolve(null) else resolve(rows[0]) }) }) }
3、下面寫我們的.then的使用,res.send回傳的是一個JSON格式的資料
//引入js,这里是对数据库的连接配置 var Mysql = require('Mysql.js'); Mysql.updateMysql(Name,Path).then( //updateMysql修改这里返回的值是个object对象,所以我们需要对其进行JSON解析 function(message) { console.info('message===' + JSON.stringify(message)); } ) //将结果集返回给前端 res.send(result); }
推薦學習:《node.js影片教學》
以上是nodejs then的用法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!