这是一个工作示例,说明我如何设置一个拦截器,该拦截器将身份验证token附加到每个请求(这或多或少是来自https://docs.angularjs.org/api/ng/service/$http的示例)angular.module("app",[]).config(function($httpProvider){$httpProvider.interceptors.push("authInterceptor");}).factory("authInterceptor",function($q){return{//interceptorconfigurationhere}})我的co