撇号小工具助手

时间:2017-10-13 03:42:40

标签: apostrophe-cms

我必须将一些额外的数据传递给一个小部件,以确定我的一些用户的某些所有权/可访问性选项。我按照这里的说明设置了一个帮助程序来传递数据:

http://apostrophecms.org/docs/technical-overviews/how-apostrophe-handles-requests.html#template-helpers-invoking-synchronous-java-script-code-from-your-template

然而,我遇到了一些问题。下面的代码用于小部件index.js文件:

module.exports = {
  extend: 'apostrophe-widgets',
  label: 'Unsubscribed Content',
  //contextualOnly: true,
  construct: function(self, options) {

    self.addHelpers({
      isSubscribed: function() {

        var req = self.apos.templates.contextReq;
        var isSubbed = false;
        var currentYear = new Date().getFullYear();
        for(var i = 0; i < req.user.subscriptions.length; i++) {
          if (req.user.subscription[i].subscriptionYear == currentYear) {
            isSubbed = true;
          }
        }

        return isSubbed;
      }
    });

  },
  addFields: [
    {
      type: 'area',
      name: 'area',
      label: 'Area',
      contextual: true
    }
  ]
};

我在这里没有遇到任何错误,但是当我尝试从小部件的模板中实际访问帮助程序时,它找不到该方法。我尝试了以下方法来访问它,并尝试获取值:

{{ apos.isSubscribed() }}
{{ isSubscribed() }}
{% if apos.isSusbcribed() %}
{% if isSubscribed() %}

但是他们都给了我以下错误之一:

错误:无法调用apos["isSubscribed"],这是未定义或假的 错误:无法调用clap,这是未定义或错误的

我在这里做错了吗?

谢谢!

2 个答案:

答案 0 :(得分:4)

在模板中,您应该可以致电apos.modules['my-module-widgets'].isSubscribed

Apostrophe还有一个console.log包装器,可以在{{ apos.log(somethingOfInterest) }}这样的模板中使用,对于嗅探这类东西非常有用。

答案 1 :(得分:2)

您还可以在module.exports中提供别名。 alias: 'myalias'

然后你可以拨打{{ apos.myalias.isSubsribed() }}