尝试在Treehouse.com上完成Node.js课程时,我无法使.on("error")
处理https.get()
工作。以下是我的代码:
var https = require("https");
// Print out message
function printMessage(username, badgeCount, points) {
var message = username + " has " + badgeCount + " total badge(s) and " + points + " points in JavaScript.";
console.log(message);
}
// Print out error messages
function printError(error) {
console.error(error.message);
}
function get(username) {
// Connect to the API URL (https://teamtreehouse/username.json)
var request = https.get("teamtreehouse.com/" + username + ".json", function(response){
var body = "";
// Read the data
response.on("data", function (chunk) {
body += chunk;
});
response.on("end", function(){
if (response.statusCode === 200) {
try {
// Parse the data
var profile = JSON.parse(body);
// Print the data
printMessage(username, profile.badges.length, profile.points.JavaScript);
} catch (error) {
// Parse Error
printError(error);
}
} else {
// Status Error
printError({message: "The user: " + username + " can not be found. HTTP Status Code: " + response.statusCode});
}
});
});
// Connection error
request.on("error", printError);
}
module.exports.get = get;
URL中的协议故意被删除,导致连接错误。这应该由request.on("error", printError);
捕获,但事实并非如此。相反,控制台中的反馈是:
https.js:191
throw new Error('Unable to determine the domain name');
^
Error: Unable to determine the domain name
at Object.exports.request (https.js:191:13)
at Object.exports.get (https.js:201:21)
at get (/Users/dangranger/Sites/sandbox/JavaScript/Node/profile.js:16:23)
at Array.forEach (native)
at Object.<anonymous> (/Users/dangranger/Sites/sandbox/JavaScript/Node/treehouseApp.js:3:7)
at Module._compile (module.js:413:34)
at Object.Module._extensions..js (module.js:422:10)
at Module.load (module.js:357:32)
at Function.Module._load (module.js:314:12)
at Function.Module.runMain (module.js:447:10)
我正在使用Node.js 5.6.0
答案 0 :(得分:0)
感谢@adeneo,看来你是对的。您似乎发现此类错误需要try
catch
阻止,如本回答Why is this basic Node.js error handling not working?