我使用http://blogs.msdn.com/b/wsdevsol/archive/2014/02/07/adding-custom-messageheader-and-http-header-to-a-wcf-method-call.aspx模块从网址抓取标题,但似乎无法在回调函数之外使用文章变量。
read('http://howtonode.org/really-simple-file-uploads', function(err, article, meta) {
console.log(article.title) // this works
title = article.title
});
console.log(title) // this doesn't work
我原本希望能够全局设置变量并按上述方式使用它,但这不起作用......我不确定问题是否与读取有关模块或我的代码中的函数。