因此,我想将所有 API 密钥存储在后端的配置文件中,这样我就不会将它们分散在各处。所以我想我可以在前端创建一个模型来在 /config 上执行 GET,然后我会返回一个配置对象,其中包含我需要的任何 API 密钥。所以我基本上是在尝试从 ApplicationRoute 访问模型。需要明确的是,请求现在发生,但我不知道如何从索引模板访问数据。我已经尝试过{{App.Config.apiKey}}
,{{apiKey}}
尝试@get.controllerFor('application').get('model')
在索引控制器中进行设置,看看我是否可以查看值,但都没有奏效。我正在使用 Ember 1.0.0 .4pre。谢谢
所以我有这样的事情:
App = Ember.Application.create
rootElement: '#app'
# Models
App.Store = DS.Store.extend
revision: 11
App.User = DS.Model.extend
firstName: DS.attr 'string'
lastName: DS.attr 'string'
accountType: DS.attr 'string'
email: DS.attr 'string'
_id: DS.attr 'string'
password: DS.attr 'string'
fullName: (->
"#{@get('firstName')} #{@get('lastName')}"
).property('firstName', 'lastName')
App.Config = DS.Model.extend
secret: DS.attr 'string'
apikey: DS.attr 'string'
# Controller
# This is has validations for a form in it but I don't think its relivent
App.IndexController = Ember.ObjectController.extend()
# Routes
App.ApplicationRoute = Ember.Route.extend
model: ->
App.Config.find()
App.IndexRoute = Ember.Route.extend
model: ->
App.User.createRecord()
DS.RESTAdapter.configure "plurals", {
config: "config"
}
App.Router.map ->
@resource 'index'
我的模板看起来像这样:
<!--- index.html --->
<html>
<head></head>
<body>
<div id="app"></div>
</body>
</html>
<!--- application.hbs --->
<div class="container">
{{outlet}}
</div>
<--- index.hbs --->
<div>
{{apiKey}} <!-- This is a value from the Config Model -->
{{firstName}} <!-- This is a value from the User Model -->
</div>