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中的數據庫讀取
我不明白你在問什麼。你能澄清嗎? – ZimSystem