GridFS で CollectionFS を使用して画像をアップロードしています。
Pictures.insert(e.target.files[0], function(err, res) {
if (err) return console.log(err);
this.setState({editing: false});
});
ただし、アップロードするとエラーが発生します。
Exception in delivering result of invoking '/cfs.pictures.filerecord/insert':
TypeError: Accounts._storedLoginToken is not a function
Accounts._storedLoginToken()
Meteor シェルで呼び出してみましたが、同じエラーが発生します。
Meteor コードでエラーが発生します。
var authToken = '';
if (typeof Accounts !== "undefined") {
var authObject = {
authToken: Accounts._storedLoginToken() || '',
};
// Set the authToken
var authString = JSON.stringify(authObject);
authToken = FS.Utility.btoa(authString);
}
どんな助けでも大歓迎です。