更新解决方案(28.03.2017):
http://aurelia.io/hub.html#/doc/article/aurelia/framework/latest/app-configuration-and-startup/8
用解决方案更新了 Aurelia 文档(向下滚动一点)。
特别感谢Charleh的提示。
问题:
Aurelia 有这个很好的功能调用enhance
,它可以帮助您使用 Aurelia 功能增强应用程序的特定部分。
但是我们可以在同一个页面上有多个增强语句吗?似乎有问题。
示例:
任务:增强页面上的第一个组件,然后从服务器获取一些数据并使用服务器数据作为绑定上下文增强页面上的第二个组件
HTML
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<my-component1></my-component1>
<my-component2></my-component2>
</body>
</html>
JS
import { bootstrap } from 'aurelia-bootstrapper-webpack';
bootstrap(function(aurelia) {
aurelia.use
.standardConfiguration()
.globalResources("my-component1", "my-component2");
aurelia.start().then((app) => {
// Enhance first element
app.enhance(null, document.querySelector('my-component1'));
// Get some data from server and then enhance second element with binding context
getSomeDataFromServer().then((data) => {
app.enhance(data, document.querySelector('my-component2'));
});
});
});
结果:
在结果中我们会增强第一个组件,但是到了第二个组件的时候,Aurelia 会尝试再次增强第一个组件!
它的发生是因为aurelia-framework.js
_configureHost
方法。
因此,基本上,当您启动enhance
它时,它会以您的元素作为应用程序主机来启动此方法:
Aurelia.prototype.enhance = function enhance() {
var _this2 = this;
var bindingContext = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
var applicationHost = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];
this._configureHost(applicationHost || _aureliaPal.DOM.querySelectorAll('body')[0]);
return new Promise(function (resolve) {
var engine = _this2.container.get(_aureliaTemplating.TemplatingEngine);
_this2.root = engine.enhance({ container: _this2.container, element: _this2.host, resources: _this2.resources, bindingContext: bindingContext });
_this2.root.attached();
_this2._onAureliaComposed();
resolve(_this2);
});
};
在里面_configureHost
我们可以看到这个 if 语句,它只是检查我们的应用程序实例是否已经配置了主机,然后什么也不做。
Aurelia.prototype._configureHost = function _configureHost(applicationHost) {
if (this.hostConfigured) {
return;
}
...
问题 所以这里的实际问题是任何增强的元素都会自动成为应用程序宿主(根),当您尝试使用相同的 aurelia 实例增强另一个元素时,您最终只会始终增强第一个元素。
问题 当我想增强页面上的几个元素时,这是否有某种方式?