Windows 上不会显示 Dashing 仪表板
Dashing dashboard won't display on Windows
我运行完全如下:
dashing new project
cd project
bundle install && dashing start
它列出了 "using" 输出并启动了服务器。 Output here.
访问 localhost:3030
会得到一个普通的灰色网页,除了页面顶部的文本 Try this: curl -d '{ "auth_token": "YOUR_AUTH_TOKEN", "text": "Hey, Look what I can do!" }' \http://localhost:3030/widgets/welcome
之外什么都没有。该页面的 generated source code is here.
运行 curl 命令,经过修改后可在 Windows 上使用,看起来好像有效,但在灰色网页上没有任何改变。
curl -X POST -H "Content-Type: application/json" -d "{ \"auth_token\": \"YOUR_AUTH_TOKEN\", \"text\": \"Hey, Look what I can do!\" }" http://localhost:3030/widgets/welcome
控制台运行服务器显示如下:
127.0.0.1 - - [02/Jun/2015 11:55:58] "POST /widgets/welcome HTTP/1.1" 204 - 0.0000
我明白了。您必须安装 Node.JS 或某种 Javascript 引擎。
我运行完全如下:
dashing new project
cd project
bundle install && dashing start
它列出了 "using" 输出并启动了服务器。 Output here.
访问 localhost:3030
会得到一个普通的灰色网页,除了页面顶部的文本 Try this: curl -d '{ "auth_token": "YOUR_AUTH_TOKEN", "text": "Hey, Look what I can do!" }' \http://localhost:3030/widgets/welcome
之外什么都没有。该页面的 generated source code is here.
运行 curl 命令,经过修改后可在 Windows 上使用,看起来好像有效,但在灰色网页上没有任何改变。
curl -X POST -H "Content-Type: application/json" -d "{ \"auth_token\": \"YOUR_AUTH_TOKEN\", \"text\": \"Hey, Look what I can do!\" }" http://localhost:3030/widgets/welcome
控制台运行服务器显示如下:
127.0.0.1 - - [02/Jun/2015 11:55:58] "POST /widgets/welcome HTTP/1.1" 204 - 0.0000
我明白了。您必须安装 Node.JS 或某种 Javascript 引擎。