Ich möchte die Abfrage String-Werte erhalten. Ich verwende $ location.search(), um diese Werte zu erhalten, aber es sagt, dass $ location.search keine Funktion ist. Ich benutze 1.5 Version von AngularJs.
JS -
var app = angular.module('myApp', []);
app.config(['$locationProvider', function($locationProvider){
$locationProvider.html5Mode(true);
}]);
app.controller('myCtrl',[ '$location','$scope', function($scope, $location){
var searchObject = $location.search();
console.log('searchObject');
console.log(searchObject);
}]);
Ich verstehe nicht, was ich im Code bin fehlt.
vielen Dank – sajalsuraj