angular.js - angular ng-class里面的引号问题
问题描述
我有一个指令,template里面的ng-class='{glyphicon-chevron-down:isOpened, glyphicon-chevron-right: !isOpened}', 给glyphicon-chevron-down和glyphicon-chevron-right加单引号和双引号都会报错,不加引号也会报错(ng-class里面的classname如果有 - 的话要加引号的)。这种情况该怎么办呢?
.directive(’brandItem’, function (){ return {restrict: ’EA’,require: ’^brandList’,transclude: true,replace: true,scope: { title: ’=’},template: ’<li ng-click='toggle()' class='list-group-item'>’ +’<label><span ng-class='{glyphicon-chevron-down:isOpened, glyphicon-chevron-right: !isOpened}'></span> {{name}}</label>’ +’<p ng-transclude></p>’+’</li>’,link: function (scope, element, attrs, brandListCtrl){ scope.isOpened = false; brandListCtrl.addItem(scope); scope.toggle = function (){this.isOpened = !this.isOpened;brandListCtrl.getOpened(scope); }} }});
问题解答
回答1:ng-class='{’active’:selected}'1.4.5 下有效。以此类推。。单引号应该有效
回答2:第一,你的angular版本是多少?这个很关键!
详细信息,参见 http://stackoverflow.com/questions/15557151/ngclass-style-with-dash-in-key
相关文章:
1. java - Spring boot启动时报错?2. angular.js - 报这个错是什么原因呢?没有显示,因为报错,可是controller里没有这个错3. android - recyclerview显示错乱4. java - 当在子类中声明一个父类中存在的变量后,自动调用的父类构造函数不起作用。5. angular.js - angular2 基础问题,求解答6. docker-remote-api - docker 有哪些Web管理UI7. 用Java写发送邮件的程序,经常被当做垃圾邮件处理怎么解决8. node.js - mongodb启动的问题9. php - C语言算法题-开灯问题 代码有点看不懂求大神指点?10. angular.js - 有没有不需要先git clone xxxx的angular2的教程?