gpt4 book ai didi

node.js - http.request() 方法不适用于具有子域的 url

转载 作者:太空宇宙 更新时间:2023-11-04 02:41:08 25 4
gpt4 key购买 nike

我正在尝试发布一些这样的数据

var options={hostname:'www.sub.domain.com',path:'post.php?'+qs.stringify(postData), method:'GET '};

然后用http.request()调用这个对象。它抛出这个错误

   events.js:71
throw arguments[1]; // Unhandled 'error' event
^
Error: Parse Error
at Socket.socketOnData (http.js:1485:20)
at TCP.onread (net.js:404:27)

可能是什么问题?

最佳答案

在“选项”对象中使用主机而不是主机名。尝试如下,

var options = {
host : 'www.sub.domain.com',
path:'/post.php?'+qs.stringify(postData),
method : 'GET'
};

关于node.js - http.request() 方法不适用于具有子域的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15567447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com