gpt4 book ai didi

php - Connection.php 第 673 行中的 QueryException :

转载 作者:行者123 更新时间:2023-11-29 21:00:58 25 4
gpt4 key购买 nike

SQLSTATE[42S02]:未找到基表或 View :1146 表“sp.sign_ups”不存在(SQL:插入 sign_ups (first_name, 姓氏电子邮件用户名密码re_password联系人 code>、updated_atcreated_at)值(hassan、Mehedi、hassanmehedi@gmail.com、marlin、marlin、marlin、01670654878、2016-05-15 06:39: 07, 2016-05-15 06:39:07))

我在单击提交按钮将注册表单数据发送到数据库时遇到上述问题。

这里说“未找到基表或 View :1146 表'sp.sign_ups'不存在”。但在我的“sp”命名数据库中没有任何类型的名为“sign_ups”的表。它名为“sign_up”……

我已经删除了“sign_up”表一次并重新创建了它。同时重新启动“Apache”和“MySQL”服务器。但什么也没发生。

这是 Controller SignUpController.php

<?php

命名空间App\Http\Controllers;

使用请求;

使用App\Http\Requests;

使用App\sign_up;

类 SignUpController 扩展了 Controller {

public function showSignUp()
{
return view('sign_up');
}

/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}

/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
sign_up :: create(Request::all());
return 'test';
}

/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
}

/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//
}

/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
}

/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
}

}

这是模型sign_up.php

<?php

命名空间应用程序;

使用 Illuminate\Database\Eloquent\Model;

类sign_up扩展模型{ protected $fillable = ['first_name', 'last_name', 'email', 'user_name', 'password', 're_password', 'contact'];}

有人可以帮忙吗?

最佳答案

您的代码中可能存在创建“插入...”查询的拼写错误。

仔细检查一下。

如果您没有拼写错误,请在此处发布您的代码

关于php - Connection.php 第 673 行中的 QueryException :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37235389/

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