{"error":{"type":"ErrorException","message":"Undefined offset: 0"
MyController.php
输入:: old()为空。如何在输入中存储一些数据?抱歉,我的英语= D
return View::make('ajax.view')
->withInput()
->withErrors($validation)
->render();
答案 0 :(得分:1)
它的作品! = d
<input type="text" NAME="fullName" value="Joseph B. Blow" />
答案 1 :(得分:0)
您需要将数据传递到View:
return View::make('ajax.view')
->withInput(Input::all())
->withErrors($validation)
->render();