0
我正在處理javascript中某些函數的問題。 所以我有這樣的例子從其他函數接收變量的函數
function(something) {
var example = 1;
var example2 = 2;
NameReturn(nameBusinessID, function(no) {
console.log(no);
//here is one callback value from another function
});
typeReturn(object, function(na) {
console.log(na);
//here is also a callback value from another function
});
view(example, example2);
}
function vliew(example, example2) {
console.log(example, example2);
//but here i want also to console.log the variables "no" and "na"
}
所以這是我的問題,有沒有什麼方法可以達到我想要什麼?
我不知道如何使這兩個變量,「不」和「吶」將它們傳遞給函數「查看」 任何人都可以幫忙嗎?謝謝!
我希望所有的4個變量在視圖功能傳遞! –
檢查更新的答案 –
確定它的工作原理,但並不完美,回電的2個功能必須保持單獨! 您有其他內部之一,但我希望它是這樣 'NameReturn(nameBusinessID,功能(無){ 的console.log(無); // 這裏是從另一個功能 一個回調值}) ; 類型返回(對象,函數(na){ console.log(na); //這裏也是來自另一個函數的回調值 });' –