ここlaravelに動作していない私のコントローラのコードは次のとおりです。localhostのページが
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Route;
use Input;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\models\Designation;
use Validator;
class Cdesigination extends Controller
{
public $flight;
public function __construct(){
$this->flight = new Designation;
}
public function index(request $request)
{
$this->flight->name = $request->name;
$this->flight->detail = $request->detail;
$this->flight->token_key = $request->_token;
$data=$this->flight->save();
if($data){
return Redirect::to('posts')->withInput()->with('success', 'Inserted Successfully.');
}
else {
return Redirect::to('posts')->withInput()->with('success', 'Not inserted Successfully.');
}
return view('designation');
}
}
ここで経路コードです:
Route::get('/posts', '[email protected]');
はトラブルとどのようにそれを解決することでは?
redirect:: to
キーワードを怒らせるとうまくいきますので、リダイレクトキーワードが問題になると思います。
「ローカルホストが動作していません」と言ったらどういう意味ですか?テストページが表示されますか?あなたは怒りで、消しゴムですか? –
私はこのコードをコメントリダイレクト:: away( 'posts') - > withInput() - > with( 'success'、 'Inserted Successfully。'); } else { リダイレクト:: away( 'posts') - > withInput() - >( 'success'、 'Not inserted successfully。'); }それ以外の場合は正常に動作するshow localhostページが動作しない –
withInput()を削除して試してみてください –