2017-01-31 66 views
0
/ Example express application adding the parse-server module to expose Parse 
// compatible API routes. 

var api = new ParseServer({ 
    ... 
    } 
}); 

// Parse Server plays nicely with the rest of your web routes 
// ================================================================= 

      MY QUESTION IS ON THIS METHOD 

// ================================================================= 
app.get('/', function(req, res) { 
    res.status(200).send('I dream of being a website. Please star the parse- server repo on GitHub!'); 
}); 

這是解析服務器示例(https://github.com/ParsePlatform/parse-server-example)中index.js的片段。 是否可以使用從初始化服務器獲取的ParseServer實例訪問數據庫?使用解析服務器API從index.j中的數據庫讀取

+0

我不明白你在問什麼。你能澄清嗎? – ZimSystem

回答

0

是可能的,但不建議像這樣運行它。

雲代碼(main.js)是我建議你使用的。

cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',