如何将这个GorillaScript翻译成LiveScript?

时间:2016-04-03 18:57:39

标签: translate livescript

我有这个GorillaScript代码来压缩数组:

Array::compact  :=  #
  for filter value in this
     value and (typeof value.isempty != 'function' or not value.isempty()) and (typeof value != 'object' or Object.keys(value).length != 0)

GorillaScript有点死了。有人可以为我翻译成LiveScript吗?我对LiveScript很陌生。

1 个答案:

答案 0 :(得分:1)

字面翻译看起来像这样。

ng-style

更惯用的例子可能是:

<div class="col-xs-2" 
  ng-style="{'background-image':'url(data:image/jpeg;base64,'+dynamicImage+')'}">

请注意,因为这是我头脑中所做的任何我的LiveScript有点生疏,但这里的一般想法都没问题。