所有
尝试查看使用表单中提交的数据更新数据库行的最佳选项。我理解Laravel更新查询构建器,但我很难理解如何获取表单数据,然后执行该查询。相对较新的Laravel :)以下是我提出的,仅从我的PHP经验和逻辑:
我曾尝试将查询放入函数中,然后让表单操作成为一种功能:
function editsop(){
// query
}
就像我说的,主要问题是试图让命名的表单对象成为更新行的东西。我有2个文本输入字段,分别命名为" body"和#34;笔记。"因此数据将更新到数据库中。非常感谢任何帮助!
答案 0 :(得分:0)
function editsop(Request $request){
// this below allows you to get the value of the input from the form
regardless if its a post or get
$request->input('name of input from form');
}
这包含您需要的所有细节