它看起來像你使用的是舊版本的環回。嘗試升級並確保用戶模型已連接到數據源。以下是執行此操作的步驟。
// # Verify version
// Ω slc version
// slc v2.1.1 (node v0.10.9)
// # upgrade with `npm install strong-cli -g`
// # create a simple project
// Ω slc lb project hello-user
// Ω cd hello-user
// # create hello-user/models/user.js
var user = require('app').models.user;
var credentials = {
email: '[email protected]',
password: 'password'
};
user.create(credentials, function(err) {
user.login(credentials, function(err, accessToken) {
console.log(accessToken);
// { userId: 1,
// ttl: 1209600,
// id: 'nt2KN4N5p3QbxByypRiHlduavxCRJUPbcStWPfxgrWYU8JllryjUp028hlJAFx4D',
// created: Tue Jan 14 2014 08:26:22 GMT-0800 (PST) }
});
});
謝謝,我更新了LoopBack,它修復了。 – user3194345