简体   繁体   中英

Building AngularJS HTTP request in template

I'm really new to AngularJS and got a WebApp-Template from my boss. I have to build an CRM and the template is FULL OF AngularJS. It's a really nice framework, but I have my problems with it.

I have this Controller to handle the articles:

(function () {
"use strict";
angular.module("app.tables", []).controller("articlesCtrl", ["$scope", "$http", "$filter",

    function ($scope, $http, $filter) {
        var init;
        $http.get('http://srv.ct-server.de/ctcrm/www/articles.php?method=fetchAll').success(function (data) {
            $scope.articles = data;
            console.log($scope.articles);
        }).
            error(function (data) {
                // log error
            })
            , $scope.searchKeywords = "", $scope.filteredArticles = [], $scope.row = "", $scope.select = function (page) {
            var end, start;
            return start = (page - 1) * $scope.numPerPage, end = start + $scope.numPerPage, $scope.currentPageArticles = $scope.filteredArticles.slice(start, end)
        }, $scope.onFilterChange = function () {
            return $scope.select(1), $scope.currentPage = 1, $scope.row = ""
        }, $scope.onNumPerPageChange = function () {
            return $scope.select(1), $scope.currentPage = 1
        }, $scope.onOrderChange = function () {
            return $scope.select(1), $scope.currentPage = 1
        }, $scope.search = function () {
            return $scope.filteredArticles = $filter("filter")($scope.articles, $scope.searchKeywords), $scope.onFilterChange()
        }, $scope.order = function (rowName) {
            return $scope.row !== rowName ? ($scope.row = rowName, $scope.filteredArticles = $filter("orderBy")($scope.articles, rowName), $scope.onOrderChange()) : void 0
        }, $scope.numPerPageOpt = [3, 5, 10, 20], $scope.numPerPage = $scope.numPerPageOpt[2], $scope.currentPage = 1, $scope.currentPageArticles = [], (init = function () {
            return $scope.search(), $scope.select($scope.currentPage)
        })()

    }
])}.call(this));

Without the Filters it works... But when I put in the last one

, $scope.numPerPageOpt = [3, 5, 10, 20], $scope.numPerPage = $scope.numPerPageOpt[2], $scope.currentPage = 1, $scope.currentPageArticles = [], (init = function () {
            return $scope.search(), $scope.select($scope.currentPage)
        })()

There comes the error

TypeError: Cannot read property 'slice' of undefined

The Array is still in the console. I dont understand this error.

This is my html:

    <section class="panel panel-default table-dynamic">
    <div class="panel-heading"><strong>Artikel</strong></div>

    <div class="table-filters">
        <div class="row">
            <div class="col-sm-4 col-xs-6">
                <form>
                    <input type="text"
                           placeholder="Search..."
                           class="form-control"
                           data-ng-model="searchKeywords"
                           data-ng-keyup="search()">
                </form>
            </div>
        </div>
    </div>

    <table class="table table-bordered table-striped table-responsive">
        <thead>
            <tr>
                <th><div class="th">
                    ID
                    <span class="fa fa-angle-up"
                          data-ng-click=" order('idArticles') "
                          data-ng-class="{active: row == 'idArticles'}"></span>
                    <span class="fa fa-angle-down"
                          data-ng-click=" order('-idArticles') "
                          data-ng-class="{active: row == '-idArticles'}"></span>
                </div></th>
                <th><div class="th">
                    Artikelgruppe
                    <span class="fa fa-angle-up"
                          data-ng-click=" order('artGroupName') "
                          data-ng-class="{active: row == 'artGroupName'}"></span>
                    <span class="fa fa-angle-down"
                          data-ng-click=" order('-artGroupName') "
                          data-ng-class="{active: row == '-artGroupName'}"></span>
                </div></th>
                <th><div class="th">
                    Artikelname
                    <span class="fa fa-angle-up"
                          data-ng-click=" order('artName') "
                          data-ng-class="{active: row == 'artName'}"></span>
                    <span class="fa fa-angle-down"
                          data-ng-click=" order('-artName') "
                          data-ng-class="{active: row == '-artName'}"></span>
                </div></th>
                <th><div class="th">
                    Preis
                    <span class="fa fa-angle-up"
                          data-ng-click=" order('artPrice') "
                          data-ng-class="{active: row == 'artPrice'}"></span>
                    <span class="fa fa-angle-down"
                          data-ng-click=" order('-artPrice') "
                          data-ng-class="{active: row == '-artPrice'}"></span>
                </div></th>
                <th><div class="th">
                    EGIS-Artikelnummer
                    <span class="fa fa-angle-up"
                          data-ng-click=" order('egisArtId') "
                          data-ng-class="{active: row == 'egisArtId'}"></span>
                    <span class="fa fa-angle-down"
                          data-ng-click=" order('-egisArtId') "
                          data-ng-class="{active: row == '-egisArtId'}"></span>
                </div></th>
                <th><div class="th">
                    Sichtbarkeit
                </div></th>
            </tr>
        </thead>
        <tbody>
            <tr data-ng-repeat="article in currentPageArticles">
                <td>{{article.idArticles}}</td>
                <td>{{article.artGroupName}}</td>
                <td>{{article.artName}}</td>
                <td>{{article.artPrice}}€</td>
                <td>{{article.egisArtId}}</td>
                <td class="articles_active text-center">{{article.active}}</td>
            </tr>
        </tbody>
    </table>

    <footer class="table-footer">
        <div class="row">
            <div class="col-md-6 page-num-info">
                <span>
                    Zeige
                    <select data-ng-model="numPerPage"
                            data-ng-options="num for num in numPerPageOpt"
                            data-ng-change="onNumPerPageChange()">
                    </select>
                    Einträge pro Seite
                </span>
            </div>
            <div class="col-md-6 text-right pagination-container">
                <pagination class="pagination-sm"
                            ng-model="currentPage"
                            total-items="filteredArticles.length"
                            max-size="4"
                            ng-change="select(currentPage)"
                            items-per-page="numPerPage"
                            rotate="false"
                            previous-text="&lsaquo;" next-text="&rsaquo;"
                            boundary-links="true"></pagination>
            </div>
        </div>
    </footer>
</section>

Please Help me

You'll need to use the $http service provided by Angular and set your $scope variables with something like this:

$http({method: 'GET', url: '/db/articles.php' }).
    success(function(data, status, headers, config) {
        $scope.articles = data;
    }).
    error(function(data, status, headers, config) {
        // called asynchronously if an error occurs
        // or server returns response with an error status.
    });

Be sure to inject the $http service into your controllers like so:

angular.module("app.tables", []).controller("articlesCtrl", ["$scope", "$filter", "$http",
    function($scope, $filter, $http) {

In your template file, you can either use {{ articles }} or ng-repeat to loop over all articles. A controller is connected to a part in the template by ng-controller="MyController" .

It's all very basic and how angular works. I recommend watching a few tutorials... For instance, this one: http://www.ng-newsletter.com/posts/beginner2expert-scopes.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM