0
我也跟着上 https://gist.github.com/jchris/3c32524577deff3d69aa 我也貼我的詳細資料踩在上面的鏈接Couchbase精簡版訪問失敗的反應母語
的註釋步驟,但我不能用「http://lite.couchbase./mydb/」連接本地couchbase精簡版in react native
任何提示將不勝感激!
我也跟着上 https://gist.github.com/jchris/3c32524577deff3d69aa 我也貼我的詳細資料踩在上面的鏈接Couchbase精簡版訪問失敗的反應母語
的註釋步驟,但我不能用「http://lite.couchbase./mydb/」連接本地couchbase精簡版in react native
任何提示將不勝感激!
解決: 使用以下方法:
- (void)launchCouchbaseLite
{
NSLog(@"Launching Couchbase Lite...");
CBLManager* dbmgr = [CBLManager sharedInstance];
CBLRegisterJSViewCompiler();
CBLListener* listener = [[CBLListener alloc] initWithManager:dbmgr port:5800];
[listener start:nil];
NSLog(@"Couchbase Lite url = %@, and port %d", dbmgr.internalURL, listener.port);
}
然後用 「http://127.0.0.1:5800/yourDBName」 爲REST URL,而不是 「http://lite.couchbase./yourDBName」