1

ember.js アプリケーションの ember-data の代わりに、ember-model ( https://github.com/ebryn/ember-model ) を使用して調査しています。新しいタグを作成するのに十分な担当者がまだいませんが、そうであれば、混乱を避けるために ember-model.js を作成します。

望ましい動作は、レコードの単純なリストを表示し、GET と POST を使用して、RESTful Rails API を介して新しいレコードを作成するフォームを表示することです。

これは、ember-model 内の Fixture Adapter でスムーズに機能しました。作成時に、予想どおり、新しいレコードが Fixture 配列にプッシュされ、ブラウザが自動的に更新されて新しいレコードが反映されます。

ReST アダプターを使用して、リストを表示し、新しいレコードを作成することができました。ただし、テンプレートにバインドされている新しく作成されたレコードは、ブラウザーの更新ボタンを押さない限り更新されません。そして今、私は何が間違っているのだろうかと思います。

投稿する前に、StackOverflow などを調べました。次にソースを掘り下げますが、他の誰かが何か洞察を持っているかどうかを尋ねようと思いました.

ありがとう、スタック オーバーフローの善良な人々。

これは私の app.js です:

window.Dash = Ember.Application.create({
LOG_TRANSITIONS: true
});

Dash.Router.map(function() {
// put your routes here
this.resource('apps', function() {
    this.route('add');
    this.resource('app', { path: ':app_id' });

});
});

Dash.IndexRoute = Ember.Route.extend({
    //temporary redirect to games list
    redirect: function () {
    this.transitionTo('apps');
    }
});

Dash.AppsRoute = Ember.Route.extend({
    model: function() {
        return Dash.App.find();
    }
});

Dash.AppsAddController = Ember.Controller.extend({
    save: function() {
    var name = this.get('name');
    var id = this.get('id');
    var account_id = this.get('account_id');
    var auth_id = this.get('auth_id');
    var state = Dash.AppState.selectedState;
    var store_type = Dash.AppPlatform.selectedPlatform;
    var store_app_id = this.get('store_app_id');
    var download_url = this.get('download_url');

    var newApp = Dash.App.create({
        name: name,
        id: id,
        auth_id: auth_id,
        state: state,
        store_type: store_type,
        store_app_id: store_app_id,
        download_url: download_url
    });
    newApp.save();
}
});

Dash.AppPlatform = Ember.ArrayController.create({
    selectedPlatform: null,
    content: [
    Ember.Object.create({id: 'itunes', name: 'iOS'}),
    Ember.Object.create({id: 'android', name: 'Google Play'}),
        Ember.Object.create({id: 'amazon', name: 'Amazon Appstore'}),
    ] 
});

Dash.AppState = Ember.ArrayController.create({
selectedState: null,
content: [
    Ember.Object.create({name: 'test'}),
    Ember.Object.create({name: 'production'})
]
})


Dash.App = Ember.Model.extend({
   id: Ember.attr(),
   name: Ember.attr(),
   auth_id: Ember.attr(),
   state: Ember.attr(),
   store_type: Ember.attr(),
   store_app_id: Ember.attr(),
   download_url: Ember.attr(),
});

Dash.App.adapter = Ember.RESTAdapter.create();

//hardcoding account id for now
Dash.App.url = 'http://localhost:3000/accounts/980190962/apps';
Dash.App.collectionKey = 'apps';

これは index.html です:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dashboard</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
  <h2>Dashboard</h2>
<script type="text/x-handlebars" data-template-name="application">
    {{outlet}}
</script>

<script type="text/x-handlebars" data-template-name="apps">
    {{#linkTo 'apps.add' }}Add an App{{/linkTo}}

    <h3>Apps List</h3>
    {{#if model}}
      <ol>
      {{#each model}}
        <li>{{#linkTo 'app' this}}{{name}}{{/linkTo}}</li>
      {{/each}} 
      </ol>

      <div>{{outlet}}</div>
    {{else}}
      <p>You have no Apps.</p>
    {{/if}}
  </script>

  <script type="text/x-handlebars" data-template-name="apps/index">
      <p>Click a game to Edit or click Add to enter a new App.</p>
  </script>

  <script type="text/x-handlebars" data-template-name="app">
    <div>
      Name: {{name}}<br />
      ID: {{id}}<br />
      Account ID: {{account_id}}<br />
      AuthID : {{auth_id}}<br />
      Test Mode?: {{state}}<br />    
      Store Type: {{store_type}}<br />
      Store App ID: {{store_app_id}}<br />
      Download URL: {{download_url}}
    </div>
  </script>

  <script type="text/x-handlebars" data-template-name="apps/add">
    <p><label for="name">Name:</label><br />{{view Ember.TextField valueBinding='name'}}</p>
    <p><label for="id">ID:</label><br />{{view Ember.TextField valueBinding='id'}}</p>
    <p><label for="account_id">Account ID:</label><br />{{view Ember.TextField     valueBinding='account_id'}}</p>
    <p><label for="auth_id">Auth ID:</label><br />{{view Ember.TextField valueBinding='auth_id'}}</p>
    <p><label for="state">Test Mode:</label><br />{{view Ember.Select     contentBinding='Dash.AppState' valueBinding='Dash.AppState.selectedState' optionValuePath="content.name" optionLabelPath="content.name"}}</p>
    <p><label for="store_type">Store Type:</label><br />{{view Ember.Select     contentBinding='Dash.AppPlatform' valueBinding='Dash.AppPlatform.selectedPlatform' optionValuePath="content.id" optionLabelPath="content.name"}}</p>
    <p><label for="store_app_id">Store App ID:</label><br />{{view Ember.TextField valueBinding='store_app_id'}}</p>
    <p><label for="download_url">Download URL:</label><br />{{view Ember.TextField valueBinding='download_url'}}</p>   
    <p><button {{action 'save'}}>Save</button></p>
  </script>

      <script src="js/libs/jquery-1.9.1.js"></script>
      <script src="js/libs/handlebars-1.0.0-rc.4.js"></script>
      <script src="js/libs/ember-1.0.0-rc.6.js"></script>
      <script src="js/libs/ember-model.js"></script>
      <script src="js/app.js"></script>

    </body>
    </html>
4

1 に答える 1