私はエラーTypeError: t(...).success is not a function
を受け取りました。私はいくつかの検索をしましたが、なぜ私のケースでこのエラーが発生するのか理解できました。TypeError:t(...)。成功は関数ではありません - 角度
私のJSコードは以下のようになります。私は間違って何をしていますか?なぜこのエラーが発生するのですか?
var app = angular.module('PriceListEditModule', ['ngRoute']);
app.controller('PriceListEditController', ["$scope", "$q", function ($scope, $q) {
GetBrands();
function GetBrands() {
$http({
method: 'Get',
url: '/GetBrands'
}).success(function (data, status, headers, config) {
$scope.brands = data;
}).error(function (data, status, headers, config) {
$scope.message = 'Unexpected Error';
});
}
}]);
とエラーが角度がHTTPでの成功を持っていない
jquery:1 TypeError: t(...).success is not a function
at i (jquery:1)
at new <anonymous> (jquery:1)
at Object.invoke (jquery:1)
at v.instance (jquery:1)
at pt (jquery:1)
at p (jquery:1)
at p (jquery:1)
at jquery:1
at jquery:1
at p.$eval (jquery:1)
なぜdown vote ??縮小コードのエラー –
は役に立ちません。バージョン番号は便利です。 –
私は何をすべきですか? –