如何检查帖子中的提交是否为空

How do I check if a submit is empty in a post?

本文关键字:提交 是否 何检查 检查      更新时间:2023-09-26

如果我的提交表单为空,我如何签入 http 帖子?由于我将其另存为 base64,如果提交表单为空,它不会让我发布。

 $http.post('http://localhost/codeigniter/index.php/api/key/profile', {
            picture: $scope.file.base64
            username: $scope.username
        })
if (isset($_POST["picture"]) && !empty($_POST["picture"]))
{
    echo "Yes, picture is set";    
}
else
{  
    echo "N0, picture is not set";
}