JellyBool

17773 经验值

确保你的 mac 正确安装了 mysql 并且在命令行可以执行 mysqldump 命令。

参考:

http://stackoverflow.com/questions/31000709/bash-mysqldump-command-not-found-mac-os-x
https://gist.github.com/handerson/2217860

根据你的环境不同进行不同的设置

额。。。这种错误,我还是觉得是你那里的单词没有写对吧。比如 prpos ,应该是 props?

你确定你写对单词了? messages

你是在什么环境使用的?mac ? linux ?确保你的系统中有 mysqldump 命令。

以后评论或者发贴的时候,用 markdown 排版一下代码吧。

https://laravist.com/discuss/markdown/learn-to-use-markdown-21

        methods: {
            addtodo: function (newtodo) {
                newtodo.completed=false,
                this.todos.push(newtodo);
                this.newTodo = {id: null, title: ''};
            },
        }

这个问题的吧,你修改一下这个,参照一下视频那样:

   addtodo: function (newTodo) {
                this.todos.push(newTodo);
                this.newTodo = {id: null, title: '',completed:false};
            },

额。。你把你的代码贴出来看看?

估计是服务器的内存和配置太低了吧

你看看你的 session.php 的配置:

  'lifetime' => 720,

  'expire_on_close' => false,

这个是什么样的 'expire_on_close' => false

如果你没有其他的自定义的需求的吧,可以使用自带的 auth/RegisterController