0
私はこの動作を得ることができません。文字列を日付形式に変換するために、空のスペースを文字 "T"で置き換えようとしていますが、動作させることができません。私の配列はconsole.logのときに動作し、yyyy-MM-ddTHH:mm形式であることがわかります。しかし、それをng-repeatフィルターで接続すると、何もしません。ここに私のコードとリンクが3次元配列の文字列を置き換えるための角フィルター
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<title>date filter</title>
</head>
<body>
<div ng-app="test" ng-controller="controller">
<table class="table table-bordered table-striped">
<tr id="theader">
<thead>
<th>Talk Title</th>
<th>Start Time</th>
<th>End Time</th>
</thead>
</tr>
<tr ng-repeat="item in returnedObj | dateFilter ">
<td>{{item.presentation.title}}</td>
<td>{{item.presentation.start_time | date: "h:mm a"}}</td>
<td>{{item.presentation.end_time | date: "h:mm a"}}</td>
</tr>
</table>
</div>
</body>
</html>
JS
var app = angular.module('test', []);
app.controller("controller", ['$scope', function($scope){
$scope.returnedObj = [{"presentation":{"title":"Introduction to Algebra",
"persons":{"1":{"id":22,"start_time":"2017-05-19 08:00","end_time":"2017-05-19 08:20"},
"speakers":[{"firstname":"Charles","lastname":"Hardin"}]}}}];
}]);
app.filter('dateFilter', function(){
return function(item){
var correctTimeFilter = item.filter(function(i){
if(i.presentation.start_time || i.presentation.end_time){
console.log(i.presentation.start_time.replace(/\s/g, 'T'));
console.log(i.presentation.end_time.replace(/\s/g, 'T'));
return i.presentation.start_time.replace(/\s/g, 'T');
return i.presentation.end_time.replace(/\s/g, 'T');
}
else
return null;
})
return correctTimeFilter;
}
});
このために配列にフィルタが必要な理由がわかりません。また、 'start_time'は' persons'オブジェクトにネストされています。日付を解析するだけの目的ですか? – charlietfl
'persons 'を配列にするのはおそらく'スピーカー 'が – charlietfl
であることに注意してください。' $ scope.returnedObj'をここに配列として入れますが、私の元のコードでは、 json_encodedされたPHPから。しかし、フォーマットは私の元のjson文字列に本当に似ています。 – missgg