问题标签 [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 投票
0 回答
246 浏览

parse-platform - 解析仪表板为空

除了 parse 托管在 Heroku 中之外,Parse Dashboard 是空的,我的应用程序运行良好,但我无法在我的 google chrome 上的 parse 仪表板中看到任何内容。它工作得很好,直到几个星期。我能够看到仪表板,但即使我运行仪表板,现在也没有加载任何内容。

0 投票
1 回答
1145 浏览

linux - Access Parse Dashboard Over Https

i have parse server running on a linux vps without any problem .now i am trying to add parse dashboard to work along side parse server on the same server. i cloned the parse server example repository as a starting point.the problem that i am facing right now is that i cannot access the dashboard (in fact i can but the problem happens after i login the loading animation start but after a while nothing happens and the screen is blank .i have tested the express app locally on my machine and i was able to access the dashboard and parse and everything was fine.if i looked into the browser console i have this errors

i investigated the problem online and tried the suggested solution (add allowInsecureHttp to dashboard setup) for it but without any hope my setup:

  • vps with Ubuntu server running
  • nginx is installed and i have ssl certificate also installed. nginx rule that redirects all the requests to the nodejs express app as follow

    /li>
  • i have parse server and parse dashboard running on the same port and this is the index.js code

0 投票
1 回答
31 浏览

parse-platform - 在解析查询ionic4中获取用户关系用户

我有以下解析查询:

...我在 page.ts 中加载数据,例如:

...所以这段代码查询const user = Parse.User.current(); 喜欢关系列中,检查用户是否在那里并返回结果。

我需要完全相反,通过前面的查询我得到朋友,但我需要得到追随者。关注者存储在 user -> likes 关系列中:

在此处输入图像描述 在此处输入图像描述

我怎样才能像这样查询用户:

...在这里从这个用户那里得到喜欢的关系数据?

0 投票
1 回答
933 浏览

node.js - 将 Parse-Dashboard 与 Parse-Server (Docker-Container) 连接起来

也许有人可以帮助我解决我的问题。

我的计划是设置一个解析服务器(https://github.com/parse-community/parse-server)并连接解析仪表板(https://github.com/parse-community/parse-dashboard/) 给他们。我想为实例使用 docker 容器。所以我有 3 个容器(MongoDB、parse-server、parse-dashboard)。

实际上解析服务器和数据库正在运行,我可以安全地查询一个测试对象。但我的问题是,仪表板没有连接到服务器。当我使用浏览器调用仪表板时,我会看到登录屏幕,并且可以使用我的凭据登录,但接下来我会看到一个白色的网站。

我阅读了几次文档和指南并尝试了不同的配置,但不幸的是我找不到我的问题。

这是我的docker-compose.yaml:(我也测试过没有 SSL 配置。)

这是config.json仪表板的:

0 投票
2 回答
342 浏览

parse-platform - Parse Dashboard 显示一些旋转的彩色点,然后变为空白

当我在浏览器中输入 Parse Dashboard 的 URL https://www.example.com/dashboard时,我看到了仪表板登录页面。我输入我的凭据,URL 更改为https://www.example.com/dashboard/apps。几秒钟后,URL 再次变为https://www.example.com/dashboard/apps/ /browser,三个旋转的彩色圆点(粉色、绿色和蓝色)出现大约 12 秒钟,然后屏幕变为空白。我尝试设置 VERBOSE 环境变量(在 Parse 服务器上工作)以获得更详细的日志记录,但这不适用于仪表板。

这是我的 Parse-Dashboard/parse-dashboard-config.json 文件:

我用来启动 Parse Dashboard 的命令行是:

第二个相关的问题是如何在 Parse Dashboard 中打开日志记录/调试?在此先感谢您的帮助。

0 投票
0 回答
170 浏览

angular - “ Uncaught TypeError: Cannot read property 'initialize' of undefined” 运行 ng test 命令并在 parse.initialize 处显示错误

我正在使用 Angular 4 并解析数据库,我正在尝试实现测试脚本并使用 ng test 命令运行。

它在 parse.initialize() 处的 app.component.ts 页面中返回初始化错误

错误是

“未捕获的类型错误:无法读取未定义的属性‘初始化’”

我在联系组件中实现了下面的示例测试脚本

contact.component.spec.ts:

和我的app.component.ts:

0 投票
0 回答
43 浏览

ios - 推送通知不适用于带有 APNS 的 iOS 和解析云功能(云功能与 android 一起工作......)

在过去的一个月里,我一直坚持这一点。我所能访问的只是解析仪表板版本 1.4.24,我们在 AWS 上自己的服务器上托管它。推送通知在一年前就开始工作了,但我认为解析有点结束了,之后它们就根本没有工作了。我曾尝试在苹果开发者网站上更新苹果推送通知生产和开发证书,但它不起作用。我想我还需要在解析仪表板上添加证书的 .pem 文件,但我不知道在哪里添加它们。求大神帮忙!!!

我也无法升级解析仪表板,因为这意味着停止服务器运行,我们不能这样做......

我在解析仪表板菜单上看到的

0 投票
0 回答
21 浏览

angular - 全文搜索使用 Parse Dashboard API 匹配精确大小写

嗨,我有一个使用 Parse Dashboard 处理数据库的 Angular 7 应用程序。我正在构建一个搜索算法,它将使用给定的输入搜索特定的单词。但是我想匹配给定输入的确切情况。

例如,如果我搜索 - 电信网络,它应该只为电信网络而不是单独的电信或单独的网络提供结果。

这是代码

term 是来自用户输入的字符串数组,使用 query.fullText() 我也单独获得网络的响应,但我必须排除它。我到处搜索,但没有找到解决方案。

请帮我解决这个问题。

0 投票
0 回答
21 浏览

parse-server - 从 AWS EB 构建主 Parse-Dashboard

我目前在我的 AWS EB 实例上安装 parse-dashboard 2.1.0 没有问题。

但是,当我尝试将其指向主版本(“parse-dashboard”:“github:parse-community/parse-dashboard#master”)时,由于 puppeteer 问题,我的实例没有部署(我认为这是必需的通过在某处做出反应)。

这类似于 Parse-Server master 和 EB 的问题,其中 /lib 是 .gitignore,因此您不能将其指向主 git。

无需安装 puppeteer 是否有任何解决方法?

谢谢!

0 投票
1 回答
57 浏览

java - ParseUser.getCurrentUser.getList("isFollowing").add(users.get(p)) 和 ParseUser.getCurrentUser.add("isFollowing", users.get(p)) 之间的区别

我正在制作一个简单的 Twitter 类应用程序,用户可以在其中关注或发布。

我为此使用 parse android。

在用户表中,我创建了一个名为“isFollowing”的列,表示关注者的名称。

arrayListusers包含存在的用户数。如果我们单击列表视图,那么用户的名称将被添加到isFollowing解析数据库的数组中。

我正在使用ParseUser.getCurrentUser().getList("isFollowing").add(users.get(position));将用户名添加到我的数组中,这给了我一个空指针异常。

但如果我使用ParseUser.getCurrentUser.add("isFollowing", users.get(position)),那么它会被正确执行。

为什么会这样?