vi保存文件有不同的選項,對應于不同的命令,你可以從下面的命令中選擇一個需要的輸入::wq 保存文件并退出vi, :w 保存文件但不退出vi,:w file 將修改另外保存到file中,不退出vi,:q 不保存文件,退出vi最后回車即可。想了解更多linux相關內容,請關注《linux就該這么學》官網。
2017-10-19
不會指令的,建議去看看Linux。可以下一個環境laragon,然后直接ctrl+Alt+T快捷直接輸入命令,基本上不會出錯,注意路徑就行,跟著做會發現,輸入命令,比你直接打開在輸入要高級便捷的多
2017-10-19
需要加入一行代碼 Schema::defaultStringLength(191); 加到
public function up()
{ Schema::defaultStringLength(191);
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->rememberToken();
});
}
public function up()
{ Schema::defaultStringLength(191);
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->rememberToken();
});
}
2017-10-10
554解決的原因是把1方法中的$message->from();$message->subject();$message->to();加上即可;
2017-10-09
Swift_TransportException thrown with message "Expected response code 250 but got code "501", with message "501 mail from address must be same as authorization user
按老師的代碼發送html郵件時報錯,把發件人和郵件主題加上就沒事了
按老師的代碼發送html郵件時報錯,把發件人和郵件主題加上就沒事了
2017-10-07
(1/1) Swift_TransportException
Expected response code 250 but got code "553", with message "553 Mail from must equal authorized user
Expected response code 250 but got code "553", with message "553 Mail from must equal authorized user
2017-10-07