为了账号安全,请及时绑定邮箱和手机立即绑定

当我单击提交按钮时,它显示“找不到对象”错误

当我单击提交按钮时,它显示“找不到对象”错误

PHP
DIEA 2021-10-22 13:26:13
我已经制作了一个表单来提交用户数据,但是当我单击提交按钮时,它显示错误“找不到对象”查看文件`@extends('layout')   @section('content')    <h1 class="title">Simple Form</h1>    <form method="POST" action="/projects">    @csrf        <div class="field">        <label class="label" for="name">Name</label>        <div class="control">            <input type="text" class="input" name="name" placeholder="Enter Name">        </div>    </div>    <div class="field">        <label class="label" for="email">E-mail</label>        <div class="control">            <input type="text" class="input" name="email" placeholder="Enter E-mail Address">        </div>    </div>    <div class="field">        <label class="label" for="pincode">Pincode</label>        <div class="control">            <input type="text" class="input" name="pincode" placeholder="Enter Pincode">        </div>    </div>    <div class="field">        <div class="control">            <button type="submit" class="button">Submit</button>        </div>    </div>    </form>@endsection
查看完整描述

1 回答

?
凤凰求蛊

TA贡献1825条经验 获得超4个赞

您不需要在 url 前使用/。网页.php:

Route::post('projects','ATGController@store');

查看文件:

<form method="POST" action="{{ url('projects') }}">

如果这不能解决问题,请检查 .env 文件中的 app_url。


查看完整回答
反对 回复 2021-10-22
  • 1 回答
  • 0 关注
  • 92 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信