赞
踩
如果单设置encrypt: true 加密链接数据库的话,可能会提示证书问题
解决这个问题需要增加 trustServerCertificate: true 的条件
var db = {}; var config = { user: 'sa', password: 'wuq', server: 'Lenovo131845', database: 'Address', port:1433, options: { encrypt: true, // Use this if you're on Windows Azure trustServerCertificate: true }, pool: { min: 0, max: 10, idleTimeoutMillis: 3000 } };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。