我尝试与api通信,它总是返回我504网关超时。我在ajax中的jQuery中尝试'获取'http请求,它运行正常。这是我的代码:
import {CustomCurrencyPipe} from "[location]/custom-currency.pipe";
import {CurrencyPipe} from "@angular/common";
@NgModule({<...>, declarations: [<...>, CustomCurrencyPipe], providers: [<...>, CurrencyPipe]})
然而,问题是当我用guzzle来调用来自php的'get'http请求时。我尝试这样的事情:
$.ajax({
type:'GET',
url: 'http://example.com',
success:function(data){
console.log(data);
}
});
这不起作用。它总是返回我504网关超时。你知道发生了什么错吗? 当我输入url例如'http://google.com'而不是'http://example.com时,它可以通过jQuery以及Guzzle php工作。