在 Javascript 中委托函数调用

问题描述 投票:0回答:2

Javascript 有没有办法像 c# 中那样拥有委托?

c# 中的示例

Object.onFunctionCall = delegate (vars v) {
    Console.WriteLine("I can do something in this private delegate function");
};

我希望用我的Javascript让我的主要对象在很长一段时间内做一些事情,并偶尔射击一个委托来提供一些更新。所有这些都无需更改我的类的代码本身来调整网页。

function mainObject() {
    this.onUpdate = function() { //Potentially the delegate function here
    }
}

var a = new mainObject();
a.onUpdate = Delegate {
      $(".myText").text("Just got a delegate update");
} 

我不知道它是否足够清楚..还没有找到这方面的资源,所以我想没有办法这样做?

注意:我不是在这里研究 jquery Click 委托事件,而是像在 C# 中一样委托函数调用

让我知道

javascript delegates
2个回答
9
投票

虽然最初的问题是通过解决根本问题(观察者-模式)来回答的,但有一种方法可以在 JavaScript 中实现委托。

C# 委托模式可在使用上下文绑定的本机 JavaScript 中使用。 JavaScript 中的上下文绑定是通过 .call 方法完成的。该函数将在第一个参数给定的上下文中调用。 示例:

function calledFunc() {
  console.log(this.someProp);
}

var myObject = {
  someProp : 42,
  doSomething : function() {
    calledFunc.call(this);
  }
}

myObject.doSomething();
// will write 42 to console;

7
投票

您正在寻找的是“观察者模式”,如所述。 这里

但是,由于您对 jQuery 感兴趣,因此您不需要费力地为自己编写观察者模式。 jQuery 已经以其 .on() 方法 的形式实现了观察者,可以在 jQuery 集合上调用该方法,以在每次调度本机或自定义事件时触发回调函数。

这是一个例子:

$(function() {
    //attach a custom event handler to the document
    $(document).on('valueChange', function (evt) {
        $(this).find("#s0").text(evt.type);
        $(this).find("#s1").text(evt.value);
        $(this).find("#s2").text(evt.change);
        $(this).find("#s3").text(evt.timestamp).toLocaleString();
    });

    //customEvent(): a utility function that returns a jQuery Event, with custom type and data properties
    //This is necessary for the dispatch an event with data
    function customEvent(type, data) {
        return $.extend($.Event(type||''), data||{});
    };

    //randomUpdate(): fetches data and broadcasts it in the form of a 'changeValue' custom event
    //(for demo purposes, the data is randomly generated)
    function randomUpdate() {
        var event = customEvent('valueChange', {
            value: (10 + Math.random() * 20).toFixed(2),
            change: (-3 + Math.random() * 6).toFixed(2),
            timestamp: new Date()
        });
        $(document).trigger(event);//broadcast the event to the document
    }
});

这是一个演示,其中包含用于定期“间隔”调度自定义事件的“开始”和“停止”按钮。

注释

  • 在某些情况下,将事件分别广播到四个数据跨度可能更合适。
  • 在网络上,您会发现提到更方便的
    jQuery.event.trigger({...})
    语法。不幸的是,这是 jQuery 的一个未记录的功能,它在 v1.9 或附近版本中消失了。
© www.soinside.com 2019 - 2024. All rights reserved.