0

在 test-detail.html 页面(部分视图)上,不会获取/显示来自各个 json 文件的数据,即在 test-detail.html 中调用控制器 TestDetailCtrl(如可以在工作警报按钮上看到的那样),但参数卷曲视图中的括号(test-detail.html)为空。但是 test-list.html 的 ListController 可以工作并获取 tests.json。

文件结构:

  • 索引.html
  • (测试)
    • tests.json(内容正确显示在 test-list.html 中)
    • 一个.json
    • b.json
  • (js)
  • (部分)
  • (CSS)

部分/测试列表.html:

<form action="" data-ng-repeat="test in tests | orderBy:orderProp">
        <input type="checkbox" data-ng-model="item.selected" data-ng-change="change(item)"> 
            <a href="#/tests/{{test.id}}">
                <img data-ng-src="{{test.imageUrl}}" alt="{{test.name}}" class="test-thumb">
            </a>
            <a href="#/tests/{{test.id}}">
                {{ test.name }} 
            </a><br />

</form>

partials/test-detail.html(不显示任何数据且所有复选标记均为假):

<div class="main">
 <img data-ng-src="{{mainImageUrl}}"/>
<h2>{{ test.name }}</h2>
 <p>{{ test.description }}</p>
    Customization: 
  <ul>
    <li>Test items: {{test.customization.items | checkmark }}</li>
    <li>Test duration: {{test.customization.duration |  checkmark }}</li>
  </ul>
</div>

js/app.js 中的路由提供程序:

app.config(['$routeProvider',
{$routeProvider
    .when('/tests',
     {templateUrl: 'partials/test-list.html', controller: 'ListController'})
    .when('/tests/:testId',
     {templateUrl: 'partials/test-detail.html', controller: 'TestDetailCtrl'})
    .otherwise({redirectTo: '/tests'});
}]);

使用 js/services.js 进行 RESTful 处理:

var appServices;
appServices = angular.module('appServices', ['ngResource']);
appServices.factory('Test', ['$resource',
  function($resource){
    return $resource('tests/:testId.json', {}, {
    query: {method:'GET', params:{testId:'tests'}, isArray:true}
    });
}]);

控制器.js:

var ctr = angular.module('myApp.controller', []);
ctr.controller('ListController', ['$scope', 'Test', function ($scope, Test) 
  {$scope.tests = Test.query(); /*works*/
  $scope.orderProp = 'duration';}]); 

ctr.controller('TestDetailCtrl', ['$scope', '$routeParams', 'Test', function($scope, $routeParams, Test) 
  {$scope.$on('$routeChangeSuccess', function() {
    $scope.test = Test.get({testId: $routeParams.testId}, function(test) {
      $scope.mainImageUrl = test.screenshots[0];
    });
    $scope.setImage = function(imageUrl) {
      $scope.mainImageUrl = imageUrl;
    };
    $scope.hello = function(name) {
      alert('Test ' + (name || 'works' + '!')); /*works*/
    }
   })}
 ]);

示例 test-a.json:

[{
id: "test-a",
name: "test a",
description: "text ... bla",
"customization": {
    "items": true,
    "duration": false}
}]
4

1 回答 1

0

我认为您在这里将 aspx 部分与角度数组混合在一起。

Angular ng-repeat 仅在客户端工作,并在完成加载时评估您的 scope.tests 数组。

您的 aspx 部分(test-detail.html)可能会在服务器端工作,并且取决于您将其与容器进行数据绑定。

编辑:你的 test-a.json 看起来很奇怪......为什么用括号封装?(为什么它是一个数组?) partials/test-a.html 不是为数组制作的。试试这个 JSON (test-a.json):

{
id: "test-a",
name: "test a",
description: "text ... bla",
"customization": {
    "items": true,
    "duration": false}
}
于 2016-05-02T12:24:27.310 回答