gpt4 book ai didi

mysql - Laravel 5.3 无法进入引用页面

转载 作者:行者123 更新时间:2023-11-29 15:26:01 24 4
gpt4 key购买 nike

我不知道这个问题是否重复,但我找不到任何解决方案。我是 Laravel 新手,我使用版本 5.3 和 PHP 5.6.4,我很难使用 action="addFriend" 将数据保存到 mysql 数据库中,问题是它不能进入引用页面。这是我在 friend_add.blade.php

中的代码
        <form method = "post" action = "/addFriend">
{{ csrf_field() }}
<table>
<tr>
<td>Friend ID</td>
<td><input type='text' name='friend_id' /></td>
<tr>
<td>Friend Name</td>
<td><input type="text" name='friend_name'/></td>
</tr>
<tr>
<td>Place</td>
<td><input type="text" name='place'/></td>
</tr>
<tr>
<td colspan = '1'>
<button type="submit" class="btn btn-primary">Submit</button>
</td>
</tr>
</table>
</form>

web.php

Route::post('/addFriend','FriendController@post');

这是我的 FriendController.php

代码
  {
$friend_id = $request->input('friend_id');
$friend_name = $request->input('friend_name');
$place = $request->input('place');
$data=array('FriendID'=>$friend_id,"FriendName"=>$friend_name,"Place"=>$place);
DB::table('friend')->insert($data);
echo "Record inserted successfully.<br/>";

}

本地主机将返回未找到对象。谁能帮我?谢谢。这意义重大。

最佳答案

很抱歉给您带来不便。但我想我刚才已经解决了。只是删除了 action="/addFriend"中的“/”,与 web.php 路由中的相同。

关于mysql - Laravel 5.3 无法进入引用页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59083636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com