标签:
nodejs项目
mssql插件(https://github.com/patriksimek/node-mssql)中的
request.query(‘select * from table‘, function(error, recordset) { })
方法取出时间比数据库中实际的时间多了8个小时。
后来发现这个8是因为时区(GMT+8)导致的。
可能是这个插件本身存在的bug(猜测)。
解决方法:
将错就错,用
JSON.stringify(date)
方法将时间强行转成国际标准时间,即(GMT+0)。
得到的时间即和数据库存储的时间相对应。
标签:
原文地址:http://www.cnblogs.com/tomotose/p/5466714.html