问题标签 [parse-dashboard]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1510 浏览

docker - 带有 docker-compose 的解析仪表板:无法连接到服务器

我使用 docker-compose 配置了一个小集群,由 parse-server、mongo 和 parse-dashboard 组成:

尽我所能,但是,我无法让部署的 parse-dashboard 连接到 myapp-parse-server。在我使用浏览器(在 localhost:5001)登录仪表板后,仪表板应用程序通知我它“无法连接到服务器”。

我尝试从 parse-dashboard 容器 ping 主机“myapp-parse-server”,它可以很好地看到容器。同样,它可以看到端点http://myapp-parse-server:1337/parse;wget 返回预期的 403。

如果我使用在我的主机上运行的 parse-dashboard 的副本,它对http://localhost:5000/parse工作得很好。所以从我的主机到解析服务器的转发端口有效。

我还尝试使用安装在容器中的 parse-dashboard-config.json 配置仪表板。产生完全相同的结果。

我不知道我在这里做错了什么。任何人都可以对此有所了解吗?

0 投票
1 回答
63 浏览

parse-platform - 清理 Parse 数据库

我的 Parse 数据库充满了我不需要保留的大量记录,例如_PushStatus班级中的 80k 条目。如果我从 Parse 仪表板中选择“删除类”以删除这些记录,Parse 会在下次需要记录推送通知时重新创建该类吗?

0 投票
1 回答
1167 浏览

google-analytics - 如何在自托管 Parse 服务器和仪表板中配置或启用分析

我正在使用带有解析仪表板的自托管 Parse 服务器,我的问题是如何配置/集成或启用 Parse Analytics。表示如何在 Parse Server 中启用或配置 Analytics Adopters 并在 Parse Dashboard 中启用 Analytics 小部件。如果可能的话,我不想使用解析替代分析。任何帮助将不胜感激。

0 投票
1 回答
428 浏览

ios - PFFile 无法将文件存储到 Parse-server

解析仪表板版本 1.1.2

解析服务器版本 2.7.1

环境设置

在 Ubuntu 16.4 上运行的 Parse-Dashboard(数字海洋水滴)

重现步骤

  • 添加新的列类型文件
  • 通过客户端和解析仪表板上传图像现有对象
  • 加载想象后什么都没有出现

日志/跟踪

浏览器控制台:[错误] 加载资源失败:服务器响应状态为 400(错误请求)(profile.jpg,第 0 行)---- http://myserver:1337/parse/files/profile.jpg

解析仪表板日志:无法存储文件

Xcode 输出:[错误]:无法存储文件。(代码:130,版本:1.16.0)

解析服务器配置示例:

0 投票
1 回答
826 浏览

parse-server - 无法通过解析仪表板连接服务器?

我在阿里云上的一个专用实例中设置了 parse-server 和 parse-dashboard,该实例具有 2vCPU 和 8GB RAM,并使用 ApsaraDB for MongoDB 作为 DB for Parse。我成功设置了仪表板和服务器。当我尝试访问服务器时,出现以下错误“无法连接到服务器”。

解析仪表板错误截图

解析仪表板错误截图

我能够成功地发出 POST 和 GET 请求,如下所示

我可以通过 putty 和 FTP 进行连接。谢谢

0 投票
1 回答
554 浏览

docker - Parse-Dashboard: Server Not Reachable: 无法连接服务器错误

我在我的 Synology nas 的 docker 容器中安装了pm2的parse-serverparse-dashboard ,如下所示:

供参考:对于 pm2 设置,我正在关注:本教程

这是我的解析服务器和解析仪表板 pm2 生态系统(在 pm2 的生态系统.json 中定义):

这是我的解析仪表板配置:/home/parse/parse-dashboard/config.json

一旦你运行: pm2 start 生态系统.json

这是解析服务器日志:pm2 logs 0

这是解析仪表板日志:pm2 logs 1

运行后,我可以访问 192.168.1.2:1337/parse (将返回{"error":"unauthorized"}

我可以访问 192.168.1.2:4040

但它返回:

服务器不可达:无法连接到服务器

我看到很多这个问题可以通过将 parse-dashboard 配置更改为来"serverURL": "http://localhost:1337/parse"解决"serverURL": "http://172.17.0.2:1337/parse"

但对我来说,仍然没有运气......

知道我在这里缺少什么吗?

0 投票
0 回答
83 浏览

node.js - use parse dashboard login separately

I'm using Parse + parse dashboard for several months now. As my parse application have some context outside of parse, dashboard doesn't show that information. Thus I want to have another simple admin panel like app. But also want to avoid doing authentication manually. I just want to use the parse dashboard authentication and do the later things.

Is is possible?

0 投票
1 回答
1600 浏览

node.js - How do I correctly use Parse.Roles relationships for multiple Parse.Objects and Users over time?

Most of the following is done with the parse-dashboard so it's a bit wordy, but I understand the code just not the relationships.

I'm setting Parse.Roles and it seems like each individual Parse.Object needs to have the Role set to have access to a given Parse.Object. For example, an Object ACL needs to contain both "Admin" and "Moderator" (with respective permissions) for Admins or Moderators to have access.

Since parent and child roles are possible, it would make sense to set a Parse.Object's ACL with the "Organization" Role, which is then further modified by the child Role. So, a "Viewer" within an "Organization" cannot Write, but an "Admin" within the "Organization" can Read/Write. I've tried multiple ways of doing this - associating one user to a "Viewer" and one to an "Admin" within an "Organization" but this does not seem to work.

My Current Solution: To manually/programmatically set each Parse.Object ACL with multiple pre-set Roles. E.g. Parse Class "Person" with ACL Roles "Viewer" & "Admin".

Question: If I want to create a different Role in the future for this same Organization, will I need to loop through each Parse.Object and manually set the new Role for each of the past Objects?

It would make sense that these relationships should be managed by the parent Organization so that this doesn't need to be done manually, but this doesn't seem to work.

Any answers, thoughts, or links are appreciated.

0 投票
0 回答
262 浏览

swift - 解析仪表板更改用户密码

开发一个新应用程序并让一些测试人员使用它。其中一个人忘记了密码,而我的伙伴犯了一个错误,将该用户的密码更改为来自 mLab 的明文密码。我们通常直接在解析仪表板中进行密码更改(目前,直到我们构建密码重置逻辑):以明文形式输入密码,它会自动散列。

当我们尝试在 Parse Dashboard 中加载 User 集合以更改密码并相应地对其进行哈希处理时,不会加载 User 集合。其他收藏虽然加载得很好。

由于我运行的是稍旧的版本,因此我尝试更新我的解析仪表板版本,但这也不起作用。

关于修复的任何建议?

0 投票
0 回答
529 浏览

node.js - 解析仪表板问题 - 表单被篡改

当我登录时提示“表单被篡改”

parse-server 配置文件中的配置有什么我错过的吗?