0

有没有办法在模型适配器的路径中包含用户的身份验证 uid?例如,假设您有一个聊天应用程序和一个conversation模型来表示两个用户之间的私人消息会话,其中数据存储如下:

{
    "conversations": {
        "<userAuthUID>": {
            "convo1": {...},
            "convo2": {...},
            ...
        },
        "<anotherUserAuthUID>": {
            ...
        }
    }
}

因此,使用这种结构,适配器的路径需要是conversations/<currentUserAuthUID>.

(仅供参考,这是一个 ember-cli 项目,如果这有什么不同的话。)

4

1 回答 1

0

它似乎正在使用以下内容:

// adapters/conversation.js

import Ember from 'ember';
import ApplicationAdapter from './application';

export default ApplicationAdapter.extend({
    pathForType: function(type) {
        //get the firebase authentication data via the `Firebase` instance
        //that i have injected into my app via an initializer
        var authData = this.container.lookup('app:firebase').getAuth();

        return  Ember.String.pluralize(type) + '/' + authData.uid;
    }
});
于 2014-10-14T14:41:19.337 回答