我正在使用mongoDB在Heroku上托管的Parse Server。我正在努力使密码重置功能起作用。我已按照说明进行操作,并将以下代码添加到index.js。添加此代码后,在应用启动或尝试发送电子邮件时,出现以下错误:JSON text did not start with array or object and option to allow fragments not set.

我知道这意味着服务器无法解析数据,但我完全不确定如何解决此问题。任何帮助深表感谢!

var express = require('express');
var ParseServer = require('parse-server').ParseServer;
var path = require('path');

var databaseUri = process.env.DATABASE_URI || process.env.MONGODB_URI;

if (!databaseUri) {
    console.log('DATABASE_URI not specified, falling back to localhost.');
}

var api = new ParseServer({
    databaseURI: databaseUri || 'MY_DATABASE_URI',
    cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
    appId: process.env.APP_ID || 'MY_APP_ID',
    masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
    serverURL: process.env.SERVER_URL || 'MY_SERVER_URL',  // Don't forget to change to https if needed

liveQuery: {
    classNames: ["Posts", "Comments"] // List of classes to support for query subscriptions
}

verifyUserEmails: true,
//The public URL of your app.
//This will appear in the link that is used to verify email addresses and reset passwords.
//Set the mount path as it is in serverURL
publicServerURL: 'MY_SERVER_URL_FROM_HEROKU',
// Your apps name. This will appear in the subject and body of the emails that are sent.
appName: 'MY_APP_NAME',
// The email adapter
emailAdapter: {
    module: 'parse-server-simple-mailgun-adapter',
    options: {
        // The address that your emails come from
        fromAddress: 'MY_MAILGUN_DOMAIN',
        // Your domain from mailgun.com
        domain: 'MY_MAILGUN_DOMAIN',
        // Your API key from mailgun.com
        apiKey: 'MY_API_KEY_FROM_MAILGUN',
    }
}
});

// Client-keys like the javascript key or the .NET key are not necessary with parse-server
// If you wish you require them, you can set them as options in the initialization above:
// javascriptKey, restAPIKey, dotNetKey, clientKey

var app = express();

// Serve static assets from the /public folder
app.use('/public', express.static(path.join(__dirname, '/public')));

// Serve the Parse API on the /parse URL prefix
var mountPath = process.env.PARSE_MOUNT || '/parse';
app.use(mountPath, api);

// Parse Server plays nicely with the rest of your web routes
app.get('/', function(req, res) {
    res.status(200).send('I dream of being a website.  Please star the parse-server repo on GitHub!');
});

// There will be a test page available on the /test path of your server url
// Remove this before launching your app
app.get('/test', function(req, res) {
    res.sendFile(path.join(__dirname, '/public/test.html'));
});

var port = process.env.PORT || 1337;
var httpServer = require('http').createServer(app);
httpServer.listen(port, function() {
    console.log('parse-server-example running on port ' + port + '.');
});

// This will enable the Live Query real-time server
ParseServer.createLiveQueryServer(httpServer);

最佳答案

在设置verifyUserEmails之前,在livequery:{...}之后缺少逗号。很难说清楚,因为您为电子邮件添加的阻止没有正确缩进。

08-07 19:18