在 JavaScript 事件上调用 google 应用脚本用户定义的方法

call google app script user defined method on JavaScript event

我在 html 中有很多属性为 data-action="someAction" 的锚标签。
我想从 1 JavaScript 单击事件中调用这些操作,如下所示:

但是这个测试抛出错误

Uncaught TypeError: google.script.run.withSuccessHandler(...).withFailureHandler(...).withUserObject(...).action is not a function

更新:

我检查过 console.log(action)string 类型, 有什么方法可以使它成为 Google App Script 的方法,以便我的下面的脚本可以工作吗?

我的脚本:

$('.icon-action').on("click", function() {
    let action = $(this).attr("data-action");
      google.script.run
          .withSuccessHandler(
              function(returnSuccess, element) {
                  // return success
              })
          .withFailureHandler(
              function(msg, element) {
                   // return error
              })
          .withUserObject(this)
          .action();
  });

Oleg Valter 的帮助和建议下我解决了这个问题。 对于未来的用户,我在这里发布我的工作解决方案。 请参考这条评论 -

$('.icon-action').on("click", function() {
    let action = $(this).attr("data-action");
      google.script.run
          .withSuccessHandler(
              function(returnSuccess, element) {
                  // return success
              })
          .withFailureHandler(
              function(msg, element) {
                   // return error
              })
          .withUserObject(this)[action]();
  });