我有这样的网址。
www.website.com/user.html?name=abcd
我想通过angularjs从user.html页面上的链接获取查询字符串。
我想通过location.search()
来获取它 var formApp = angular.module('formApp', []);
var user;
formApp.controller('formProfile1', function($scope,$http,$location){
user =$location.search().name;
alert(user);
问题是当我在代码上运行时,我的错误未定义。
答案 0 :(得分:1)