3

I have created a Javascript namespace to avoid conflict with other Javascript codes.

var ns = {
   init: function() {
      $('a').click(this.clickHandler);
   },
   clickHandler: function() {
      // Some code here ..

      // The keyword "this" does not reference my "ns" object anymore. 
      // Now, it represents the "anchor"
      this.updateUI();
   },
   updateUI: function() {
      // Some code here ...
   }
};

Please, how can I reference my enclosing namespace?

4

4 回答 4

6

$.proxy

$('a').click($.proxy(this.clickHandler, this));
于 2013-06-19T16:04:47.020 回答
4

您可以将事件处理程序绑定到匿名函数并在其中调用clickHandler。这样上下文仍然会引用ns对象。

var ns = {
   init: function() {
      var self = this; // store context in closure chain
      $('a').click(function () {
         self.clickHandler();
      });
   },
   clickHandler: function() {
      this.updateUI();
   },
   updateUI: function() {
      // Some code here ...
   }
};
于 2013-06-19T16:06:43.453 回答
1

这是一篇文章: http: //www.codeproject.com/Articles/108786/Encapsulation-in-JavaScript

它解释了在命名空间中创建一个闭包,您可以在其中存储东西(如原始的“this”)

var ns = (function () {
    var self;

    return {
        init: function () {
            self = this;
            $('a').click(this.clickHandler);
        },
        clickHandler: function () {
            // Some code here ..
            self.updateUI();
        },
        updateUI: function () {
            // Some code here ...
        }
    };
})();

在这里提琴

于 2013-06-19T16:18:47.140 回答
0

一个好的方法是在引用它的函数中定义一个局部变量。当“这个”改变你时,这会有所帮助。您的代码可能如下所示:

var ns = new (function() {
    var self = this;
    self.init = function() {
        $('a').click(self.clickHandler);
    },
    self.clickHandler = function() {
        // Some code here ..

        // The keyword "this" does not reference my "ns" object anymore. 
        // Now, it represents the "anchor"
        self.updateUI();
   },
   self.updateUI = function() {
      // Some code here ...
   }
})();

这允许您仍然使用 this 引用事件处理程序,然后使用仅在内部可用的本地定义的引用来引用您的命名空间。

于 2013-06-19T16:15:31.097 回答