CouchDB的查询与关键参数的图

问题描述 投票:9回答:3

如果没有一个关键的参数,认为正常工作

$curl "http://127.0.0.1:5984/music/_design/albums/_view/by_release_date"

{"total_rows":311,"offset":0,"rows":[
{"id":"a4327d0718d3b1e227df7124a99a7fc3","key":"1991-12-22","value":{"by":"张楚","title":"黑月亮"}},
{"id":"a4327d0718d3b1e227df7124a99a3ac5","key":"unknown","value":{"by":"郑钧","title":"郑钧:赤裸裸"}},

但是,当用钥匙,我得到了无论是不好的请求响应或空的结果。为什么?

$curl "http://127.0.0.1:5984/music/_design/albums/_view/by_release_date?key=unknown" { “错误”: “BAD_REQUEST”, “原因”: “invalid_json”}

$curl "http://127.0.0.1:5984/music/_design/albums/_view/by_release_date?key=1993" { “TOTAL_ROWS”:311, “偏移”:0, “行”:[

]}

地图功能:

map
function(doc) {
  key = doc.release_date
  value = {by: doc.author , title: doc.title}
  emit(key, value);
}
json couchdb
3个回答
34
投票

关键是一个字符串,因此你需要包括" = %22,e.g http://127.0.0.1:5984/music/_design/albums/_view/by_release_date?key=%221993%22


1
投票

我猜你是想查询键范围。尝试指定startkeyendkey

http://127.0.0.1:5984/music/_design/albums/_view/by_release_date?startkey=1993&endkey=1993z

更多细节:http://wiki.apache.org/couchdb/HTTP_view_API#Querying_Options


0
投票

这是我如何处理它

let serverURL = "SERVER_IP:5984"
let dd_name = 'email' // for example
let viewname = "by_email" // for example

const findDocByEmail = email => {
  let url = `${serverURL}/_design/${dd_name}/_view/${viewname}?key="${email}"`
  fetch(url, {
    method: 'GET',
    mode: "no-cors",
    headers:{
      'Content-Type': 'application/json',
      'Authorization': 'Basic ' + btoa('COUCH_USER:SECRET'), // you can remove this if not needed,
    }
  })
  .then(res => {
    return res.json()
  })
  .then(response => console.log('Response: ', response))
  .catch(error =>  console.log(error))

}
© www.soinside.com 2019 - 2024. All rights reserved.