服务器端获取
我想将列表合并到服务器端的显示模板中。
如何向节目中的列表或视图发出 GET 请求?我是否必须调用节目中的另一个库才能进行服务器端调用,或者沙发是否有本地方法来执行此操作。如果是图书馆,它是什么?我希望我基本上可以使用 couch.js 服务器端。
I want to merge a list into a show template on the server side.
How would I make a GET request to a list or a view from a show? Do I have to call another library in the show to make a server side call or does couch have a native way to do this. If a library, what is it? I wish I could use couch.js server side basically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前CouchDB还没有这样的服务器端功能。 _show 和 _list 函数的要求是一个完整的沙箱。显示或列表必须始终为相同的输入返回相同的输出。 (这是为了支持 HTTP 缓存。)
At this time, CouchDB does not have server-side functions like this. The requirement for _show and _list functions is a complete sandbox. The show or list must always return the same output for the same input. (This is to support HTTP caching.)