猿问

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

我已经制作了一个表单来提交用户数据,但是当我单击提交按钮时,它显示错误“找不到对象”


查看文件`


@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


DIEA
浏览 93回答 1
1回答

凤凰求蛊

您不需要在 url 前使用/。网页.php:Route::post('projects','ATGController@store');查看文件:<form&nbsp;method="POST"&nbsp;action="{{&nbsp;url('projects')&nbsp;}}">如果这不能解决问题,请检查 .env 文件中的 app_url。
随时随地看视频慕课网APP
我要回答