我在 JS 中有下一个函数:
function status(){
this.functionA = function(){}
//Some others function and fields
}
我还有另一个功能:
function create(root){
var server = libary(function (port) {
//Here some functions
});
var returnValue = {
current:status(),
cur:function(port){
current.functionA();
}}
return returnValue;
}
当我打电话时current.functionA()
,它说当前未定义。我怎么打电话functionA()
?