编程语言
首页 > 编程语言> > javascript-“风帆升降机”发出咕Gr的错误和空白页

javascript-“风帆升降机”发出咕Gr的错误和空白页

作者:互联网

我在这里遵循(极其简单)的说明:http://sailsjs.org/get-started.

但是,当我尝试用帆扬帆行驶时,它只是给了我一个空白页,因为我的咕unt声安装存在问题.我重新安装它,从而修复了错误,但是现在当我访问localhost:1337时,我仍然有空白页.我知道有些事情在起作用,因为当我停止运行风帆升降机时,我什至没有得到一个空白页面,但是我没有看到预期的homepage.ejs.

运行风帆电梯时的输出为:

sails lift
info: Starting app...

info: 
info:                .-..-.
info: 
info:    Sails              <|    .-..-.
info:    v0.11.0             |\
info:                       /|.\
info:                      / || \
info:                    ,'  |'  \
info:                 .-'.-==|/_--'
info:                 `--'-------'
info:    __---___--___---___--___---___--___
info:  ____---___--___---___--___---___--___-__
info: 
info: Server lifted in `C:\Users\Me\WebstormProjects\GameWorldCraft`
info: To see your app, visit http://localhost:1337
info: To shut down Sails, press <CTRL> + C at any time.

debug: --------------------------------------------------------
debug: :: Sat Aug 22 2015 12:24:00 GMT-0700 (Pacific Daylight Time)

debug: Environment : development
debug: Port        : 1337
debug: --------------------------------------------------------
info: Gruntfile could not be found.
info: (no grunt tasks will be run.)

最后两行似乎是问题所在,但我不知道如何解决.任何帮助,将不胜感激.

解决方法:

我猜您的帆安装由于某种原因失败了.

npm uninstall sails
npm cache clear
npm install sails

如果这样不起作用,请进入您的app / node_modules / sails目录,然后运行:

npm install grunt-cli

(在某些情况下,您可能已经在全局安装了笨拙的CLI,并且妨碍了它.)

标签:node-js,sails-js,javascript
来源: https://codeday.me/bug/20191028/1948661.html