我有一個角度的應用程序與快遞服務器進行通信。我已將角度應用程序鏈接到快速服務器。我可以ping角度容器內的鏈接,但在代碼中使用時顯示錯誤。訪問鏈接與泊塢窗撰寫
泊塢撰寫文件
myexpress:
build: express-server
links:
- "mymongodb:mongo"
ports:
- "8080:3000"
angular:
build: angular
links:
- "myexpress:express"
ports:
- "4200:4200"
我可以在http://localhost:4200/訪問應用程序。 HTTP調用的代碼片段:
return this.http.post('http://express:3000/signup', body, {headers: headers})
.map((response: Response) => response.json())
.catch((error: Response) => Observable.throw(error.json()));
如何從角容器訪問該鏈接?
嘗試http:// myexpress並刪除鏈接塊。 –
它的修改仍然一樣。我使用了'ping express',我得到了輸出。它必須是別的東西。 –