gpt4 book ai didi

aurelia-templating - Aurelia - 多个增强语句

转载 作者:行者123 更新时间:2023-12-04 12:05:23 26 4
gpt4 key购买 nike

更新解决方案(28.03.2017):

http://aurelia.io/hub.html#/doc/article/aurelia/framework/latest/app-configuration-and-startup/8
用解决方案更新了 Aurelia 文档(向下滚动一点)。
特别感谢 查理提示。

问题:

Aurelia 有这个不错的功能调用 enhance ,它可以帮助您使用 Aurelia 功能增强应用程序的特定部分。
但是我们可以在同一个页面上有多个增强语句吗?似乎有问题。

示例:
任务:增强页面上的第一个组件,然后从服务器获取一些数据,并使用服务器数据作为绑定(bind)上下文来增强页面上的第二个组件

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 实例增强另一个元素时,您最终只会始终增强第一个元素。

问题
当我想增强页面上的几个元素时,这是否有某种方式?

最佳答案

这里有一个线索:

this.root = engine.enhance({container: this.container, element: this.host, resources: this.resources, bindingContext: bindingContext});
this.root.attached();
aurelia.enhance只是包装 TemplatingEngine实例的 .enhance方法。

你可以拉 TemplatingEngine从容器中调用 .enhance在它上面通过 bindingContext自从 aurelia.enhance这样做(但添加了您已经通过第一个 .enhance 调用完成的额外“主机配置”步骤)。

所以那一点可能看起来像:
import { Container } from 'aurelia-dependency-injection';

let engine = Container.instance.get(TemplatingEngine);

engine.enhance({ container: Container.instance, element: document.querySelect('my-component2'), resources: (you might need to inject these too), bindingContext: someContext });

(免责声明:我没有测试上述内容,因此可能不准确 - 您可能还需要传入资源对象 - 您可以将其注入(inject)或从容器中拉出 - 我相信类型只是 Resources )

但是 - 需要注意的是:您的 my-component2实际上不会是宿主元素的子元素 my-component1 .我不确定这是否会导致进一步的问题,但这只是一个想法。

我仍然很好奇你为什么要引导一个 Aurelia 实例,然后让它增强同一页面上的多个元素,而不是仅仅将所有服务器响应逻辑包装在组件的 View 模型本身中?

也许您可以为这背后的原因提供更多背景信息?

关于aurelia-templating - Aurelia - 多个增强语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39311949/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com