Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

superagent.get can't get response.text #815

Open
huguangju opened this issue Dec 17, 2015 · 3 comments
Open

superagent.get can't get response.text #815

huguangju opened this issue Dec 17, 2015 · 3 comments

Comments

@huguangju
Copy link

The example below, i can't get response.text.

request
    .get('http://192.185.228.226/projects/ma/1-5-2/angular/js/config.js')
    .end(function(err, res){
      console.log(res.text);  // is undefined
    });

it Response Headers is:

HTTP/1.1 200 OK
Server: nginx/1.8.0
Date: Thu, 17 Dec 2015 02:14:29 GMT
Content-Type: application/x-httpd-php
Content-Length: 17528
Connection: keep-alive
Last-Modified: Mon, 30 Nov 2015 14:17:39 GMT
Accept-Ranges: bytes

open the script in browser directly will called to download it, maybe it is a reason that can't get response content. so, replace the url with http://192.185.228.226/projects/ma/1-5-2/angular/css/demo.css is ok.

@focusaurus
Copy link
Contributor

I'm getting CORS access denied errors, but is res.body populated for you? If so, it's because your response Content-Type header isn't prefixed with text/ and side note is probably incorrect.

@huguangju
Copy link
Author

@focusaurus I didn't encounter CORS error, and my res.body is {}

@chrischjh
Copy link

I got the same error after upgraded to 1.6.1 today. It works at version 1.5.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants