8

ガイドで私は見つけることができます:

" Ember アプリケーションを既存のサイトに埋め込む場合、rootElement プロパティを指定することで、特定の要素に対してイベント リスナーを設定できます。

window.App = Ember.Application.create({
  rootElement: '#sidebar'
});

"

それを正しく使用する方法の例を教えてください。

4

1 に答える 1

24

HTML

<script type="text/x-handlebars" data-template-name="app-view">
    My ember app view
</script>

This is a static content

<div id="app-container"></div>

This is a static content

JS

App = Ember.Application.create({
  rootElement: '#app-container'
});

App.ApplicationController = Ember.Controller.extend();
App.ApplicationView = Ember.View.extend({
    templateName: 'app-view'
});

App.Router = Ember.Router.extend({
    root: Ember.Route.extend({
        index: Ember.Route.extend({
            route: '/',

            connectOutlets: function (router) {
                // do some stuff here...
            }
        })
    })
});

App.initialize();

JSFiddle は次のとおりです: http://jsfiddle.net/MikeAski/xtzNB/

于 2012-07-09T18:06:34.157 に答える