2017-03-21 67 views
0

我使用下面的代碼來使用Kitura對CouchDB執行Swift代碼。CouchDB Kitura執行視圖

database.queryByView("high-priority-tasks", ofDesign: "polls", usingParameters: [], callback: { (json: JSON?, error :NSError?) in 

     if error != nil { 
      try! response.status(.internalServerError).end() 
     } 

     response.send(json: json!) 
    }) 

在我的CouchDB我所創建的視圖:

enter image description here

我收到以下錯誤回:

po error?.localizedDescription! 
▿ Optional<String> 
    - some : "Error: not_found, reason: missing" 

回答

3

我覺得在queryByView ofDesign參數應該是名設計文檔(_design /之後的部分)在您的情況下,它可能是「高優先級任務」(它在設計文檔字段中被截斷)。