私は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()
と、 current が未定義であると表示されます。どうすれば電話できますfunctionA()
か?