从CouchDB Design Doc调用API

时间:2015-09-09 15:53:45

标签: javascript couchdb cloudant

我想知道是否可以在设计文档中进行API调用。我已经尝试了下面的代码,但是我收到以下错误消息。

Set<Integer> wantedIndices

这是代码:

Set<Integer> wantedIndices = new HashSet<>(Arrays.asList(1, 3));
Stream<String> input = Stream.of("s0", "s1", "s2", "s3", "s4");
List<String> result = input.limit(Collections.max(wantedIndices)+1)
            .collect(collectByIndex(wantedIndices, Collectors.toList()));
// [s1, s3]

谢谢!

1 个答案:

答案 0 :(得分:0)

您无法使用CouchDB中的AJAX。 (它不是网络浏览器)

如果您希望将数据库中的更改传播到其他数据源,则可以使用http://fittextjs.com/。无论你如何分割它,这将是一个更加强大的解决方案。