0

私の Angularjs-App では、クエリ URL パラメーター datenbestand が設定されていません: ?datenbestand=undefinded. ソースコードは以下の通り。

HTML

<select ng-model="datenbestand" id="datenbestand" name="datenbestand" class="span3 search-query">
                        <option value="A">A</option>
                        <option value="B">B</option>
                    </select>

コントローラ

app.controller( 'VListCtrl', [ '$scope', 'personlistdto', 'VListLoader', '$q', 'VService', 
                                          function( $scope, personlistdto, VListLoader, $q, VService  ) {
    $scope.personlistdto = personlistdto;
    $scope.searchFactory = VListLoader;
    $scope.search =  function( ){
        $scope.personlistdto = $scope.searchFactory();
    };
}
]  );

サービス:

services.factory( 'VService', [ '$resource',
                            function find( $resource ) {
    return $resource( '/cdemo/rest/vers/ajs/:id',
            { id: '@id', datenbestand: '@datenbestand', isArray: false }
    );
} ] );


services.factory( 'VListLoader', [ 'VService', '$q', '$route', 
                                       function( VService, $q, $route ) {
    var find = function find() {
        var delay = $q.defer();
        VService.get( function( personlistdto ) {
            delay.resolve( personlistdto );
        }, function() {
            delay.reject( 'Unable to fetch v' );
        } );
        return delay.promise;
    };

    return find;
} ] );

私は何を間違っていますか?

4

1 に答える 1

0

私は Angular を初めて使用しますが、工場がどのように にアクセスしていると思いますか datenbestand? あなたの問題は範囲の1つだと思います。あなたのコードに似たようなことをすると、サービスなどで具体的に渡したり、同じスコープで呼び出しを行ったりしない限り、コードは表示されません。

ただし、この投稿があなたの質問に答えるのに役立つと思います。それが役立つことを願っています。

于 2013-08-09T15:22:42.563 に答える