在指南中我可以找到:
" 如果您将 Ember 应用程序嵌入到现有站点中,您可以通过提供 rootElement 属性为特定元素设置事件侦听器:
window.App = Ember.Application.create({
rootElement: '#sidebar'
});
"
请举例说明如何正确使用它。
在指南中我可以找到:
" 如果您将 Ember 应用程序嵌入到现有站点中,您可以通过提供 rootElement 属性为特定元素设置事件侦听器:
window.App = Ember.Application.create({
rootElement: '#sidebar'
});
"
请举例说明如何正确使用它。
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/