dongshi2458 2015-10-02 04:54
浏览 137
已采纳

完整性约束违规:1048列“名称”不能为空

I'm making a REST API to register a user using PHP and Slim framework. It's giving me an error when I run it in advanced REST client:

{"error":{"text":SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'name' cannot be null}}

The code for the register module is as follows:

function insertUpdate() {
    $request = \Slim\Slim::getInstance()->request();
    $update = json_decode($request->getBody());
    $sql = "INSERT INTO users (name,email,password,phoneNumber,imageUrl,created_at) VALUES (:name, :email, :password, :phoneNumber, :imageUrl, :created_at)";
    try {
        $db = getDB();
        $stmt = $db->prepare($sql);  
        $stmt->bindParam("name", $update->name);
        $stmt->bindParam("email", $update->email);
        $stmt->bindParam("password",$update->password);
        $stmt->bindParam("phoneNumber",$update->phoneNumber);
        $stmt->bindParam("imageUrl",$update->imageUrl);
        $time=time();
        $stmt->bindParam("created_at", $time);

        $stmt->execute();
        echo "Register successfull";
    } catch(PDOException $e) {
        //error_log($e->getMessage(), 3, '/var/tmp/php.log');
        echo '{"error":{"text":'. $e->getMessage() .'}}'; 
    }
}

Stack Trace:

#0 /Applications/XAMPP/xamppfiles/htdocs/api/v1/index.php(71): Slim\Slim::handleErrors(8, 'Trying to get p...', '/Applications/X...', 71, Array)
#1 [internal function]: insertUpdate()
#2 /Applications/XAMPP/xamppfiles/htdocs/api/v1/Slim/Route.php(462): call_user_func_array('insertUpdate', Array)
#3 /Applications/XAMPP/xamppfiles/htdocs/api/v1/Slim/Slim.php(1326): Slim\Route->dispatch()
#4 /Applications/XAMPP/xamppfiles/htdocs/api/v1/Slim/Middleware/Flash.php(85): Slim\Slim->call()
#5 /Applications/XAMPP/xamppfiles/htdocs/api/v1/Slim/Middleware/MethodOverride.php(92): Slim\Middleware\Flash->call()
#6 /Applications/XAMPP/xamppfiles/htdocs/api/v1/Slim/Middleware/PrettyExceptions.php(67): Slim\Middleware\MethodOverride->call()
#7 /Applications/XAMPP/xamppfiles/htdocs/api/v1/Slim/Slim.php(1271): Slim\Middleware\PrettyExceptions->call()
#8 /Applications/XAMPP/xamppfiles/htdocs/api/v1/index.php(14): Slim\Slim->run()
#9 {main}

How to resolve this error?

  • 写回答

1条回答 默认 最新

  • dqusbxh44823 2015-10-02 05:54
    关注
    function insertUpdate() {
            $request = \Slim\Slim::getInstance()->request();
            parse_str($request->getBody(),$update); 
            $sql = "INSERT INTO users (name,email,password,phoneNumber,imageUrl,created_at) VALUES (:name, :email, :password, :phoneNumber, :imageUrl, :created_at)";
            try {
                //Validate your filed before insert in db
                if(!is_array($update) || (!$update)) {
                    throw new Exception('Invalid data received');   
                }
                // put your require filed list here
                if((!$update['name']) || (!$update['email']) || (!$update['password'])){
                    throw new Exception('Missing values for require fields');
                }
                $db = getDB();
                $stmt = $db->prepare($sql);  
                $stmt->bindParam("name", $update['name']);
                $stmt->bindParam("email", $update['email']);
                $stmt->bindParam("password",$update['password']);
                $stmt->bindParam("phoneNumber",$update['phoneNumber']);
                $stmt->bindParam("imageUrl",$update['imageUrl']);
                $time=time();
                $stmt->bindParam("created_at", $time);
    
                $stmt->execute();
                echo "Register successfull";
            } catch(PDOException $e) {
                //error_log($e->getMessage(), 3, '/var/tmp/php.log');
                echo '{"error":{"text":'. $e->getMessage() .'}}'; 
            }catch(Exception $e) {
                //error_log($e->getMessage(), 3, '/var/tmp/php.log');
                echo '{"error":{"text":'. $e->getMessage() .'}}'; 
            }
        }
    

    Updated code as per request recieved

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 求数学坐标画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站