解析服务器上传大小限制,超过 100MB?

解析服务器上传大小限制,超过 100MB?

我正在尝试将文件上传到我的解析服务器(使用 javascript sdk),但我需要确保我可以上传最大 500MB(例如)。

可以在 parse-server 中完成吗?可以在某些配置文件中编辑吗?

谢谢

答案1

正如您提到的,您使用了 parse-server-example。

因此你将打开index.js并在此代码中

var api = new ParseServer({
  databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
  cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
  appId: process.env.APP_ID || 'myAppId',
  masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
  serverURL: process.env.SERVER_URL || 'http://localhost:1337/parse',  // Don't forget to change to https if needed
  liveQuery: {
    classNames: ["Posts", "Comments"] // List of classes to support for query subscriptions
  }
});

您将保留所有相同的代码,但您将添加最后一行

var api = new ParseServer({
 ..........
  liveQuery: {
    classNames: ["Posts", "Comments"] // List of classes to support for query subscriptions
  }, //dont forget to add the coma after the last bracket
maxUploadSize: "500mb"  //you will now have 500mb limit :)
});

相关内容