AngularJs Image upload to S3

前端 未结 2 1685
南方客
南方客 2021-01-13 17:03

I am:
- Creating a Web Application
- AngularJS front end with ng-file upload (https://github.com/danialfarid/ng-file-upload)
- Node.js backend
- Want to be a

2条回答
  •  南笙
    南笙 (楼主)
    2021-01-13 17:33

    Your front-end machine is failing to resolve the hostname via the domain name service. The most likely problem is that you used the wrong hostname for the server you are uploading to:

    mybucket.name.s3-us-east-1.amazonaws.com

    If the hostname being used is correct, verify that the DNS information for the host you are trying to reach is available from your client. For example, use the dig command under linux or nslookup under Windows.

提交回复
热议问题