总是调用 getEventArgs() returns null

calling getEventArgs() always returns null

MS Dynamics:我有一个 Javascript 代码需要处理上下文的事件参数。这是我的代码:

 function myFunction(econtext)
{
    var eventArgs = econtext.getEventArgs();
}

此函数在字段的 OnChange 事件上触发。 问题是 eventArgs 变量总是空的! 取而代之的是 getDepth() returns 一个非空值。 为什么只有 eventArgs 总是空的? 当我将函数关联到事件时,我已经将上下文设置为第一个参数。

此致。

getEventArgs 仅适用于 Save 事件,这就是您在 OnChange 事件中得到 null 的原因。

来自 MSDN: https://msdn.microsoft.com/en-us/library/Gg328130.aspx#BKMK_getEventArgs

This method returns null for any event other than the Save event.