我將我的sqlite數據庫轉換爲Couchdb。我可以將數據庫轉換並上傳到Couchdb服務器。一切,但圖像。我想上傳圖像作爲獨立附件,我想用JavaScript,REST和xhr批量處理。如何批量上傳Couchdb附件?
POST http://127.0.0.1:5984/database/_bulk_docs
Data : {"_id": "701", "_attachments": {"555_image.png": { "content_type": "image/jpg","data":[object TiFilesystemFile] }}}
我有CURLed單個文件來測試,並且工作。我如何做批量?
這是和Appcelerator Titanium一起開發的iOS應用程序。