无论如何访问 angularJS 中的 GET 变量

Is there anyway to access the GET variable in angularJS

如何访问 AngularJS 脚本引导到的当前 PHP 脚本的 GET 变量?

我读到 $window 服务将为控制器提供 window 边界变量,但我不知道如何访问这些变量。 GET变量也在这里面吗?

如果不在您的项目中包含 ngRoute,您可以使用 $location 服务。

将 $location 服务注入你的控制器(我假设你知道这意味着什么,因为你显然是用 $window 服务做的)

然后您可以使用

访问获取变量
 $location.search().user_id;

希望对您有所帮助,祝您好运!