如何订阅PencilBlue中的活动?

时间:2015-10-17 16:53:22

标签: pencilblue

我实际上无法确定如何订阅事件,或者至少正确地这样做。似乎没有太多关于如何这样做的文档,所以我从现有服务中获取了一些线索。

这是我正在使用的代码:

module.exports = function(pb){
  //pb dependencies
  var BaseObjectService = pb.BaseObjectService;

  var TYPE = 'page';

  function PageProxyService() {}

  PageProxyService.init = function(cb){
    pb.log.debug('PageProxyService: Initialized');
    cb(null, true);
  };

  PageProxyService.handlePageSave = function(context, cb){
    // I'm using console.log to make the message stand out more.
    // For production things, I use pb.log.debug :)
    console.log("===================================");
    console.log("I GOT A CALL");
    console.log("===================================");
    console.log(context);
    console.log("===================================");
    cb(null);
  };

  // Trying to subscribe to any of these seems to do nothing.
  BaseObjectService.on(TYPE + '.' + BaseObjectService.BEFORE_SAVE, PageProxyService.handlePageSave);
  BaseObjectService.on(TYPE + '.' + BaseObjectService.AFTER_SAVE, PageProxyService.handlePageSave);

  //exports
  return PageProxyService;
};

handlePageSave永远不会被召唤。我做错了什么?

1 个答案:

答案 0 :(得分:1)

PageObjectService将触发事件。但是,从0.4.1开始,并非所有控制器都已转换为利用该服务。创建了一个新的控制器PageApiController来取代现有的控制器。 UI最终将(〜2016年第1季度)转换为使用新的API端点。