我正在学习Sails JS(和NodeJS),我试图建立与SQL Server Express的连接。到目前为止我所拥有的:
名为test-project-db
的数据库,其中包含一个名为TestTable1
的表。它有两列:name varchar(20)
和description varchar(100)
。
使用sails new
生成的风帆项目,以及使用sails generate api TestTable1
生成的模型/组件。
我的档案: - api / models / TestTable1.js
module.exports = {
attributes: {
name: {
type: 'string',
},
description: {
type: 'string',
},
}
};
- config / connections.js:
sqlserver: {
adapter : 'sails-sqlserver',
user : 'sa',
password: 'passw',
host : 'localhost\\SQLEXPRESS',
database: 'test-project-db'
}
- config / models.js:
module.exports.models = {
connection: 'sqlserver',
migrate: 'safe',
};
但当我使用sails lift
运行服务器并转到localhost:1337/testtable1
时,我收到错误消息:
(node:15756) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): ConnectionError: Failed to connect to localhost:undefined in 60000ms
(node:15756) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
而且,如果我使用sails-sqlserver
代替sails-mssqlserver
,我会(在控制台中):
{"name":"Sails-MSSqlserver","hostname":"DESKTOP-PMN0K03","pid":15928,"level":30,"msg":"Error in __FIND__: { ConnectionError: Failed to connect to localhost:undefined in 60000ms\n at Connection.<anonymous> (D:\\Práctica 2\\test-project\\node_modules\\sails-mssqlserver\\node_modules\\mssql\\lib\\tedious.js:378:25)\n at Object.onceWrapper (events.js:315:30)\n at emitOne (events.js:116:13)\n at Connection.emit (events.js:211:7)\n at Connection.connectTimeout
(D:\\Práctica 2\\test-project\\node_modules\\sails-mssqlserver\\node_modules\\tedious\\lib\\connection.js:467:12)\n at ontimeout (timers.js:475:11)\n at tryOnTimeout (timers.js:310:5)\n at Timer.listOnTimeout (timers.js:270:5)\n name: 'ConnectionError',\n message: 'Failed to connect to localhost:undefined in 60000ms',\n code: 'ETIMEOUT' }","time":"2018-01-31T19:00:27.325Z","v":0}
error: Sending 500 ("Server Error") response:
Error (E_UNKNOWN) :: Encountered an unexpected error
ConnectionError: Failed to connect to localhost:undefined in 60000ms
at Connection.<anonymous> (D:\Práctica 2\test-project\node_modules\sails-mssqlserver\node_modules\mssql\lib\tedious.js:378:25)
at Object.onceWrapper (events.js:315:30)
at emitOne (events.js:116:13)
at Connection.emit (events.js:211:7)
at Connection.connectTimeout (D:\Práctica 2\test-project\node_modules\sails-mssqlserver\node_modules\tedious\lib\connection.js:467:12)
at ontimeout (timers.js:475:11)
at tryOnTimeout (timers.js:310:5)
at Timer.listOnTimeout (timers.js:270:5)
Details: ConnectionError: Failed to connect to localhost:undefined in 60000ms
在浏览器中:
[Error (E_UNKNOWN) Encountered an unexpected error] Details: ConnectionError: Failed to connect to localhost:undefined in 60000ms
沿500错误页面。
关于我做错了什么的任何想法?
答案 0 :(得分:1)
localhost:undefined
- &gt;端口未定义,因为您未在配置中提供该端口。将port
属性添加到sqlserver
中的config/connections.js
连接中,并将其分配给您的数据库服务器端口。
旁注:在学习Node时学习Sails非常少,特别是因为Sails起初看起来很吓人。只要把它一块一块地拿走,你就一定会把它弄得一团糟。如果你熟悉MVC框架,比如Rails,那么Sails就会感到宾至如归。