升级仪表板后 PARSE DASHBOARD 无法查看云日志
Posted
技术标签:
【中文标题】升级仪表板后 PARSE DASHBOARD 无法查看云日志【英文标题】:PARSE DASHBOARD unable to see cloud logs after upgrading dashboard 【发布时间】:2017-05-22 12:39:55 【问题描述】:更新我的解析仪表板后,我丢失了“日志列”,如您所见:
我刚刚升级了我的解析仪表板和我的解析服务器:
仪表板:?.?.? (package.json https://pastebin.com/KRFaxJha)
解析服务器:2.4.0
节点:7.10.0
这是我的 parse-dashboard 配置文件:
"apps": [
"appId": "APP_ID",
"masterKey": "MASTER_KEY",
"restKey": "REST_KEY",
"serverURL": "http://WWW_WEBSITE:8081/parse",
"appName":"APP_NAME"
],
"users": [
"user": "ADMIN",
"pass": "ADMINXXXXXXX"
]
这是我的云代码测试功能:
Parse.Cloud.define("hello", function(request, response)
response.success("Hello world!");
);
当我用 curl 调用它时,我有:
curl -X POST -H "X-Parse-Application-Id: APP_ID" -H "X-Parse-REST-API-Key: REST_KEY" -H "Content-Type: application/json" -d ' ' http://WWW_WEBSITE:8081/parse/functions/hello
"result":"Hello world!"
结果是正确的,在解析服务器上我有跟踪:
verbose: REQUEST for [POST] /parse/functions/hello: method=POST, url=/parse/functions/hello, user-agent=curl/7.29.0, host=WWW_WEBSITE:8081, accept=*/*, x-parse-application-id=APPID, x-parse-rest-api-key=REST_KEY, content-type=application/json, content-length=3,
info: Ran cloud function hello for user undefined with:
Input:
Result: "Hello world!" functionName=hello, , user=undefined
verbose: RESPONSE from [POST] /parse/functions/hello:
"response":
"result": "Hello world!"
result=Hello world!
我看过这个话题: https://github.com/parse-community/parse-dashboard/issues/281 我已经尝试在我的解析服务器和仪表板上设置详细的导出变量
我想我错过了一些配置,但我找不到哪一个,
非常感谢,
美人蕉
【问题讨论】:
【参考方案1】:仪表板版本不好,我不知道为什么:
npm install -g parse-dashboard 修复它并安装好的仪表板版本
【讨论】:
以上是关于升级仪表板后 PARSE DASHBOARD 无法查看云日志的主要内容,如果未能解决你的问题,请参考以下文章
Bitnami Parse Server Dashboard 添加邮件适配器
将 Parse-Dashboard 与 Parse-Server (Docker-Container) 连接起来