最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Set a callback function inside a javascript class - Stack Overflow

programmeradmin1浏览0评论

excuse the pseudo code, my actual file is much larger:/

I want to call a function (with parameters) from inside a class. However, that function should be passed to the class as a variable.

someObject = {
    itWorked:function(answer){
       alert(answer);
    },

    plugins:{
        somePlugin:function(){

            var callback;
            this.doSomething = doSomething;

            function setCallback(c){
                callback = c;
            }

            function doSomething(){
                 var answer = "hello";
                 [callback](answer); // how do I call this?
            }

        }
    },

    widgets:{
        something:function(){
            var doIt = new someObject();
            doIt.setCallback(someObject.itWorked()); // how do I send this?
            doIt.doSomething();
        }
    }
}

So how would I pass itWorked() to the class? And how would I call that itWorked(answer) function within the class as well as passing a variable to if?

excuse the pseudo code, my actual file is much larger:/

I want to call a function (with parameters) from inside a class. However, that function should be passed to the class as a variable.

someObject = {
    itWorked:function(answer){
       alert(answer);
    },

    plugins:{
        somePlugin:function(){

            var callback;
            this.doSomething = doSomething;

            function setCallback(c){
                callback = c;
            }

            function doSomething(){
                 var answer = "hello";
                 [callback](answer); // how do I call this?
            }

        }
    },

    widgets:{
        something:function(){
            var doIt = new someObject();
            doIt.setCallback(someObject.itWorked()); // how do I send this?
            doIt.doSomething();
        }
    }
}

So how would I pass itWorked() to the class? And how would I call that itWorked(answer) function within the class as well as passing a variable to if?

Share Improve this question asked Nov 27, 2011 at 14:38 ed209ed209 11.3k19 gold badges71 silver badges83 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3

You will need to change

setCallback = function (c) {callback = c;}

to

this.setCallback =  function (c) {callback = c;}

so the setCallback function will be public.

If you also want to scope the callback, you can call it like this

callback.call(scope, param1, param2);

If you don't know how many parameters, you can call it like this

callback.apply(scope, parameters);

Scope could be any object, even an empty one {} if you want.

By the way, I really like your use of private variables in this example, great work with the javascript. Here is a good way to write your javascript object to help with the initialization and readability

var mynamespace = {};

(function () {
   function MyObject(param1, param2) {
      this.initialize(param1, param2);
   }

   MyObject.prototype = {
      initialize: function (param1, param2) {
          var privateScope = {
              param1: param1,
              param2: param2,
              callback: null
          };

          this.setCallback = function (c) {
              privateScope.callback = c;
          }

          this.doSomething = function () {
              if (privateScope.callback) {
                  privateScope.callback.call();
              }
          }
      }
   }
   mynamespace.MyObject = MyObject;
}());

Then to use it

var obj = new mynamespace.MyObject("value1", "value2");

Remove the parentheses to pass the function as a variable.

doIt.setCallback( someObject.itWorked );

You can then use the callback as you would any other function.

callback( answer );
发布评论

评论列表(0)

  1. 暂无评论