如何确定序列是否包含另一个序列的值?

时间:2016-10-11 15:05:43

标签: freemarker

我有两个整数序列。我想确定序列A是否包含seuqence B的值,然后得到A中的B值。

这就是我的尝试:

'use strict';

/**
 * @ngdoc function
 * @name clientApp.controller:MoviesCtrl
 * @description
 * # MoviesCtrl
 * Controller of the clientApp
 */
angular.module('clientApp')
  .controller('MoviesCtrl', function ($scope) {
    $scope.movies = [
     {
         title: 'Star Wars',
         url: 'www.youtube.com'
     }
    ];
  });

它有效(结果为“是”),但是当我使用List时它不起作用(结果为“no”):

<#assign myArticles = [50901,50369] />
<#assign articles = [50369, 50379, 50901] />

<#list myArticles as article>
    ${articles?seq_contains(article)?string("yes", "no")}
</#list>

为什么?

0 个答案:

没有答案