AngularJS - Format Text Return From JSON To Title

2019-03-11 15:30发布

I have a service that retrieves data from a JSON file.

Some of the data within the data is all in uppercase, for example:

$scope.FootballClubs = [{
    CompanyName: [MANCHESTER UNITED, LIVERPOOL FOOTBALL CLUB, CHELSEA, WIGAN UNTIED, LEICESTER CITY]
}];

And in my HTML, i am simply throwing about the above:

<div ng-repeat="name in FootballClubs">
    {{ name.CompanyName }}
</div>

Which throws out:

MANCHESTER UNITED
LIVERPOOL FOOTBALL CLUB
CHELSEA
WIGAN UNTIED
LEICESTER CITY

What i am trying to display is:

Manchester United
Liverpool Football Club
Chelsea
Wigan United
Leicester City

3条回答
We Are One
2楼-- · 2019-03-11 16:22

A filter is an ideal solution for this purpose

<div ng-repeat="name in FootballClubs">
    {{ name.CompanyName | titleCase }}
</div>

So the filter itself would be

angular.module('myFootballModule', [])
  .filter('titleCase', function() {
    return function(input) {
      input = input || '';
      return input.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
    };
  })
查看更多
等我变得足够好
3楼-- · 2019-03-11 16:23

Let me offer a non-directive way which is probably easier to implement but less powerful and dependent on the solution being UI only. First, change them to lowercase {{name.CompanyName.toLowerCase()}}

I think the easiest way is to just have CSS format it (either via a style tag, class, etc).

<div ng-repeat="name in FootballClubs" style="text-transform:capitalize;">
 {{ name.CompanyName.toLowerCase() }}
</div>

Here is a demo: http://plnkr.co/edit/S4xtIRApMjKe0yQGREq5?p=preview

查看更多
趁早两清
4楼-- · 2019-03-11 16:34

just use this div in your HTML

  <div ng-repeat="name in FootballClubs">
     {{ name.CompanyName | titleCase:CompanyName }}
 </div>
查看更多
登录 后发表回答