我是node.js的新手,我使用request发送发布请求。但是我收到了错误消息!

     request({
         method: 'POST',
         url: config.api + '/index',
         body: {
         name: "name"
        },
        json: true
      })

        throw er; // Unhandled 'error' event
        ^

         Error: Invalid protocol: 127.0.0.1:

最佳答案

我这样写:它工作正常,您可以像这样修改它。

     request({
           method: 'POST',
           url: 'http://127.0.0.1:3000' + '/index',
           body: {
           name: "name"
          },
          json: true
          })

关于node.js - 请求不起作用,错误: Invalid protocol: 127. 0.0.1 :?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44930738/

10-16 21:24