gpt4 book ai didi

angularjs - 如何在 ngClass 中使用动态值

转载 作者:行者123 更新时间:2023-12-02 19:23:56 25 4
gpt4 key购买 nike

我正在尝试应用与范围变量相同的类名。

例如:

<div ng-class="{item.name : item.name}">

这样item.name的值被添加到类中。但这似乎没有做任何事情。关于如何做到这一点有什么建议吗?

谢谢!

编辑:

这实际上是使用 ng-options 在选择中完成的。例如:

<select ng-options="c.code as c.name for c in countries"></select>

现在,我想应用一个值为 c.code 的类名

我发现了以下指令,它似乎有效,但不适用于值的插值:

angular.module('directives.app').directive('optionsClass', ['$parse', function ($parse) {
'use strict';

return {
require: 'select',
link: function(scope, elem, attrs, ngSelect) {
// get the source for the items array that populates the select.
var optionsSourceStr = attrs.ngOptions.split(' ').pop(),
// use $parse to get a function from the options-class attribute
// that you can use to evaluate later.
getOptionsClass = $parse(attrs.optionsClass);

scope.$watch(optionsSourceStr, function(items) {
// when the options source changes loop through its items.
angular.forEach(items, function(item, index) {
// evaluate against the item to get a mapping object for
// for your classes.
var classes = getOptionsClass(item),
// also get the option you're going to need. This can be found
// by looking for the option with the appropriate index in the
// value attribute.
option = elem.find('option[value=' + index + ']');

// now loop through the key/value pairs in the mapping object
// and apply the classes that evaluated to be truthy.
angular.forEach(classes, function(add, className) {
if(add) {
angular.element(option).addClass(className);
}
});
});
});
}
};

}]);

最佳答案

迟做总比不做好。

<div ng-class="{'{{item.name}}' : item.condition}">

是的。 '{{ 表示类名。

关于angularjs - 如何在 ngClass 中使用动态值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24563001/

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