这个问题似乎重复了,但是很遗憾,我听不懂其他答案。
我正在尝试将回调函数的值分配给父变量。
例如
let orientation = null;
orientation = Exif.getData(image, function(){
return "somevalue";
});
在这里如何为定向分配“ somevalue”?
答案 0 :(得分:-1)
您可以通过以下方式进行操作:
let orientation = null;
Exif.getData(image, function(){
orientation = "somevalue";
});
...
if(!orientation) //The callback probably did not run