Code Monkey home page Code Monkey logo

Comments (6)

mzabriskie avatar mzabriskie commented on March 29, 2024

What version are you using?

from axios.

tony-kerz avatar tony-kerz commented on March 29, 2024

"axios": "~0.5.4"

a little more info:

axios:
screen shot 2015-04-12 at 9 32 35 am

jquery:
screen shot 2015-04-12 at 9 33 31 am

from axios.

mzabriskie avatar mzabriskie commented on March 29, 2024

So it looks like the payload is being sent, but the Accept, and Content-Type headers are different. Is your server ignoring the body since it's expecting a different header value?

from axios.

mzabriskie avatar mzabriskie commented on March 29, 2024

@tony-kerz ping

from axios.

tony-kerz avatar tony-kerz commented on March 29, 2024

hey @mzabriskie, sorry to leave you hangin, got distracted, but put in a few cycles just now, and we can safely chalk this up to operator-error. the following setup worked for the gulp based server and body-parser middleware:

gulp.task 'server', ->
  gulp.src buildApp
  .pipe plug.webserver(
    livereload: false
    directoryListing: false
    open: true
    middleware: [
      bodyParser.json()

      (req, res, next) ->
        if (req.url == '/comments.json') and (req.method == 'POST')
          fileName = "#{buildApp}/comments.json"
          fs.readFile fileName, (err, data) ->
            if err
              console.log 'read-file: err=%o', err
            comments = JSON.parse data
            comments.push req.body
            fs.writeFile fileName, JSON.stringify(comments, null, 4), (err) ->
              if err
                console.log 'write-file: err=%o', err
              res.end JSON.stringify(comments)
        else
          next()
    ]
  )

i originally tried bodyParser.json instead of bodyParser.json() which was the issue.

so axios was working great, i just wasn't using the express components correctly,
sorry bout that, but thanks for the help!

regards,
tony.

from axios.

mzabriskie avatar mzabriskie commented on March 29, 2024

Glad you got it figured out 👍

from axios.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.