在更新我的parse-dashboard之后,我丢失了"logs column“,如您所见:

我刚刚升级了我的解析仪表板和解析服务器:
仪表板:?(package.json https://pastebin.com/KRFaxJha)
parse-server: 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 -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和我尝试在我的解析服务器和仪表板上设置详细的导出变量
我想我错过了一些配置,但我找不到是哪一个,
非常感谢,
美人蕉科
发布于 2017-05-23 00:34:36
不好的仪表板版本我不知道原因:
npm安装-g解析器-仪表板修复它并安装了良好的仪表板版本
https://stackoverflow.com/questions/44113113
复制相似问题