毕设填坑

作者: 帆帆叨叨叨 | 来源:发表于2018-04-16 19:50 被阅读0次

    mongo管理员登录

    mongo --port 27017 -u myUserAdmin -p 'abc123' --authenticationDatabase 'admin'

    找不到es2015

    添加了.babelrc文件之后报错:

    Module build failed: Error: Couldn't find preset "es2015" relative to directory "E:\\github\\pets"

    解决方案:

    npm install --save-dev babel-preset-es2015

    使用 ... 扩展符 报Unexpected token错误

    解决方法:

    babel还要加插件才能解释这个写法

    npm install --save-dev babel-plugin-transform-object-rest-spread

    下载完插件后在.babelrc添加插件

    {"plugins": ["transform-object-rest-spread"]}

    相关文章

      网友评论

        本文标题:毕设填坑

        本文链接:https://www.haomeiwen.com/subject/mrcfkftx.html