gpt4 book ai didi

css - Polymer:加载动态内容时重新加载样式

转载 作者:行者123 更新时间:2023-11-28 12:06:01 25 4
gpt4 key购买 nike

我使用 <style include="style-name"></style> 包含样式这通常工作正常。

但是,我有一个元素可以通过 JavaScript 动态加载和更改其内容。它会在某个时候从一些外部源加载新内容并相应地更新其内容。这些新内容没有 style-name 中的样式应用于他们。

我如何让 Polymer 重新评估样式并将它们应用于新内容?


如果有不同,我会使用 Meteor + Synthesis。

最佳答案

为了保持样式范围,您应该使用 Polymer importHref() 和 dom() 函数,如下所示:

// ...
let importSource = Polymer.Base.importHref('path/to/external-source',
// Import is done, use the body of that
event => {
// #container is my element which should have the content
// but you can change to any element what you want
// or use just the this.root
Polymer.dom(this.$.container).innerHTML = importSource.import.body;
},
// Handle errors
event => console.error(event));
// ...

如果您使用 Shady DOM,Polymer 将通过这种方式应用样式范围,在 Shadow DOM 中它应该默认工作,但我没有测试,所以最好使用 Polymer 内置函数。

Polymer.updateStyles() 仅在您像这样更改本地 DOM css 变量时才起作用:this.customStyle['--my-toolbar-color'] = 'blue ';

关于css - Polymer:加载动态内容时重新加载样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39541782/

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