-2
我正在研究node.js,並將請求發佈到遠程服務器。服務器工作正常,因爲我試圖在郵遞員上的API。但是下面的代碼不會總是出現ECONNRESET錯誤。爲什麼?http.request總是收到ECONNRESET錯誤?
var http = require('http')
sendSMS('...','【nodejs】您的驗證碼是1234')
function sendSMS(phone,content){
http.request({
protocol:'http:',
host:'121.52.209.124',
port:'8888',
method:'post',
path:'/sms.aspx?action=send&userid=...&account=...&password=...&mobile='+phone+'&content='+encodeURIComponent(''+content)
})
}