用于替换文本的Angularjs指令

时间:2014-09-04 14:04:41

标签: javascript angularjs

我是angularjs的新手,我想创建一个指令来更改人类可读的文本。

范围包括来自数据库的记录。我想更改它们与 humanReadable 数组匹配。

angular.module('app', [])
    .directive("humanReadable", function () {
        return {
            restrict: "A",
            replace: true
        }
    });

   var humanReadable= [{
        text: "first_name",
        replace: "First Name"
    }, 
    {
        text: "last_name",
        replace: "Last Name"
    }];

function MyCtrl($scope) {   
    $scope.comesFromDatabase = ["first_name", "last_name"];
}

我的HTML就是这样。

<div ng-app="app">
    <div ng-controller="MyCtrl">
        <ul>
            <li ng-repeat="item in comesFromDatabase">{{item}} - 
                <span human-readable="item"></span>
            </li>
        </ul>
    </div>
</div>

jsfiddle is here

3 个答案:

答案 0 :(得分:3)

正如Martinspire所说,最好使用一个看起来像下面的过滤器 -

angular.module('myapp')
    .filter('humanReadable', [function () {
        return function (str) {
            return str.split("_").join(" ").replace(/([^ ])([^ ]*)/gi,function(v,v1,v2){ return v1.toUpperCase()+v2; });

        };
    }]);

如果你只想要指令,对上面的代码进行一些修改,它看起来像这样 -

 angular.module('myapp')
        .directive('humanReadable', function () {
            return {
                restrict: 'A',
                link: function (scope, element, attrs) {
                    element.html(attrs.humanReadable.split("_").join(" ").replace(/([^ ])([^ ]*)/gi,function(v,v1,v2){ return v1.toUpperCase()+v2; }));
                }
            };
        });

编辑:我已经完成了它而没有使用你的humamReadable数组来概括它,假设你可能觉得它有用而不是使用一个单独的数组。

答案 1 :(得分:1)

angular.module('app', [])
    .directive("humanReadable", function () {
    return {
        restrict: "A",
        scope: {
            items: '=',
            humanReadable: '='
        },
        link: function (scope, element, attrs) {
            scope.items.forEach(function (item, i) {
                if (item.text === scope.humanReadable) {
                    element.text(item.replace);
                }
            });

        }
    }
});

演示:http://jsfiddle.net/vhbg6104/4/

答案 2 :(得分:0)

更好的方法是使用自定义过滤器。您可以在文档https://docs.angularjs.org/guide/filter或api https://docs.angularjs.org/api/ng/filter/filter中阅读所有相关信息 您也可以从翻译过滤器中获取灵感:https://github.com/angular-translate/angular-translate 总而言之,您可能会这样写:{{item | human-readable}}ng-bind,如下所示:<span ng-bind="item | human-readable">

使用工具,我确定你能搞清楚