gpt4 book ai didi

javascript - 使用 ng-repeat 时 Jdenticon 图标不渲染

转载 作者:太空宇宙 更新时间:2023-11-04 16:05:03 34 4
gpt4 key购买 nike

我一直在使用 Jdenticon JavaScript 库 ( https://jdenticon.com/ ) 作为我的用户图标。它应该使用哈希值并将其渲染为 SVG 或 Canvas,如下所示:

<svg width="200" height="200" data-jdenticon-hash="ff8adece0631821959f443c9d956fc39">
Fallback text for browsers not supporting inline svg
</svg>

所以问题是我试图使用 Angular ng-repeat 在单个页面上渲染多个用户图标并在 data-jdenticon-hash 内绑定(bind)哈希。看起来所有数据都在它应该在的位置,但 Jdenticon 提示它没有看到绑定(bind)的数据。如果我在 data-jdenticon-hash 中添加静态哈希(例如“ff8adece0631821959f443c9d956fc39”),它会正确呈现所有图标。

这是我当前的代码:

<div ng-repeat="i in friends" last-element-directive>
<div id="requests" class="col col-md-12 col-sm-12 col-xs-12 tab-pane fade in active" ng-show="user_friends">
<div id="icon" class="col-md-12">
<div class="col-md-1 col-sm-1 col-xs-4">
<svg width="40" height="40" data-jdenticon-hash="{{i.avatar}}"></svg>
</div>
<div class="col-md-3 col-sm-2 col-xs-3">
<h3><a href="/user/?id={{i.username}}" target="_blank">{{i.username}}</a></h3>
</div>
</div>
</div>
</div>

如有任何帮助,我们将不胜感激!

最佳答案

我不是 jdition 方面的专家,但只是在为我的项目实现它时偶然发现了这一点。也许对你有帮助:

The problem is that jdenticon.update is never called for canvases created dynamically as by Angular. A solution could be to create a directive that is responsible for calling jdenticon.update when the canvas element is constructed. See this fiddle for an example: https://jsfiddle.net/w5h6msvd/

来源是这个 github 问题:https://github.com/dmester/jdenticon/issues/10

编辑:这就是我现在在项目中使用它的方式

import identiconImpl from 'jdenticon';

export default () => ({
restrict: 'A',
link: (scope, elem) => {
identiconImpl.update(elem[0], scope.hashValue);
},
scope: {
hashValue: '<'
}
});

这是模板:

<svg identicon hash-value="ctrl.hashAndSaltOperatorName()"></svg>

哦,这里的 index.js 拥有所有必要的部分:

export default angular
.module('jdenticonHash', [])
.directive('identicon', identiconDirective);

关于javascript - 使用 ng-repeat 时 Jdenticon 图标不渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41945445/

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