AngularJS - 日期上的jSON显示某些ID

时间:2014-12-11 17:34:28

标签: javascript json angularjs

如果今天是某一天,我怎么能实施,例如)12/11/2014然后我想要显示对象

{"id":"11th","content":"Lunch Item Here"}

我想通过数据显示每月的不同午餐项目。

{{greeting.id}} / {{greeting.content}}

function Hello($scope, $http) {
$http.get('/data.json').
    success(function(data) {
        $scope.greeting = data;
    });

以上是我的Javascript文件。

感谢任何帮助

1 个答案:

答案 0 :(得分:0)

特别是对于您的示例和示例数据,您可以执行类似

的操作
   <div ng-show="greeting.id == '11th'">
     {{greeting.content}}
   </div>