在Riot.js表达式中调用全局函数

时间:2015-08-30 17:04:32

标签: javascript riot.js

我试图从Riot.js中的表达式调用在全局命名空间中声明的函数。

这不起作用:

<strong>Created { getDateString(item.created) } by { item.creator }</strong>

可以调用全局moment()函数(来自moment.js):

<strong>Created { moment(item.created) } by { item.creator }</strong>

包含此函数的整个JavaScript文件已加载...如果我从this.on('mount')调用getDateString(),它可以正常工作:

this.on('mount', function() {
    getDateString(new Date());
});

我真的不明白命名空间在Riot.js中是如何工作的,所以我无法弄清楚为什么我对getDateString()的调用在表达式中失败但在mount函数中成功。有人能告诉我我做错了吗?

1 个答案:

答案 0 :(得分:4)

确保您的globalFunction()声明为全球。标记定义中<script>标记的范围不是全局的。小心吧。

<my-tag>
  <p>{ someGlobalFunction(message) }</p><!-- will work -->
  <p>{ localFunction1(message) }</p><!-- won't work -->
  <p>{ localFunction2(message) }</p><!-- will work -->
  <p>{ localFunction3(message) }</p><!-- will work -->

  <script>
    this.message = 'world'

    // Not reachable from the template
    function localFunction1 (arg) {
      return 'Hello ' + arg + '!'
    }

    // Reachable because this is the same as localFunction3
    localFunction2 (arg) {
      return 'Hello ' + arg + '!'
    }

    // Reachable from the template
    this.localFunction3 = function(arg) {
      return 'Hello ' + arg + '!'
    }.bind(this)
  </script>
</my-tag>