angularjs中$http方法与$httpProvider是一个意思吗?我看书时说用$http方法与服务器互交用的却是$httpProvider,这是一个概念吗?
欢迎选择我的课程,让我们一起见证您的进步~~
Use $httpProvider to change the default behavior of the $http service.
$httpProvider 是用来设置 $http 请求时的配置的,比如全局禁用缓存,添加 header 之类
https://docs.angularjs.org/api/ng/provider/$httpProvider
配置$http,也就是在config函数中需要使用$httpProvider
Use $httpProvider to change the default behavior of the $http service.
$httpProvider 是用来设置 $http 请求时的配置的,比如全局禁用缓存,添加 header 之类
https://docs.angularjs.org/api/ng/provider/$httpProvider
配置$http,也就是在config函数中需要使用$httpProvider