0
如何從函數getval中獲取myObject.myname,myObject.myage的值?它會返回undefined當我console.log它。順便說一句我正在使用節點js。謝謝。Node.js從另一個函數訪問變量的值
var post = http.request(options, function(res) {
res.setEncoding('utf8');
res.on('data', function (data) {
console.log('Response: ' + data);
var myObject = JSON.parse(data);
console.log('----------------------------------------------');
console.log(myObject.myname);
console.log(myObject.myage);
console.log('----------------------------------------------');
});
});
function getVal() {
//some code here
console.log(myObject.myname);
console.log(myObject.myage);
}
順便說一句myObject包含myname,myage等 –
只要對象在可由getVal訪問的作用域中聲明,就應該沒有問題 –