用户元更新没有任何价值

时间:2015-10-05 20:27:38

标签: php wordpress

所以,我有以下内容来更新用户meta:

<?php if ( is_user_logged_in() ) { ?>
    <?php echo '<input class="input" type="text" id="rhc_phone" name="rhc_phone" placeholder="Phone number" value="' .$current_user -> rh_phone. '"/>' ;?>                          
    <?php update_user_meta( $current_user->ID, 'rh_phone', esc_attr( $_POST['rhc_phone'] ) ); ?>            
<?php }else{ ?>
        <input class="input" type="text" id="rhc_phone" name="rhc_phone" placeholder="Phone number" value=""/>
<?php } ?>

但是,当我点击提交时,没有任何值(甚至不是之前的值)。

我做错了什么?

谢谢!

编辑:这是我通过ajax发送的表单:

<?php
    $current_user = wp_get_current_user();
    $rhcs_close = $_REQUEST['rhc_post_id'];//same as post id
?>
<div class="rh_contact_form">
   <div class="my_textfield rhc_phone_number_class">    
        <?php if ( is_user_logged_in() ) { ?> 
            <?php echo '<input class="my_textfield__input" type="text" id="rhc_phone" name="rhc_phone" placeholder="Phone number" value="' .$current_user -> billing_phone. '"/>' ;?>
        <?php }else{ ?>
            <input class="my_textfield__input" type="text" id="rhc_phone" name="rhc_phone" placeholder="Phone number" value=""/>
        <?php } ?>                                              
    </div>
    <div class="my_textfield rhc_ask_class">    
        <?php if ( is_user_logged_in() ) { ?> 
            <?php echo '<input class="my_textfield__input" type="text" id="rhc_ask" name="rhc_ask" placeholder="Ask me" value="' .$current_user -> my_question. '"/>' ;?>
        <?php }else{ ?>
            <input class="my_textfield__input" type="text" id="rhc_ask" name="rhc_ask" placeholder="Ask me" value=""/>
        <?php } ?>                                              
    </div>  
    <div class="rh_contact_button">         
        <button class="rh_contact_me">
            <i class="icons">done</i>
        </button>
    </div> 
</div>
<script type="text/javascript" >
function my_form_validate(element) {
    $('html, body').animate({scrollTop: $(element).offset().top-100}, 150);
    element.effect("highlight", { color: "#F2DEDE" }, 1500);
    element.parent().effect('shake');
  }

jQuery(document).ready(function($) {

$('body').on('click', '.rh_contact_me', function() {

    if($('#rhc_phone').val() === '') {
        my_form_validate($('#rhc_phone'));            

    } else if($('#rhc_ask').val() === '') {               
        my_form_validate($('#rhc_ask'));

    } else {
        var data = {
            'action': 'my_send_message',                
            'phone': $('#rhc_phone').val(),             
            'to_author': $('#rhc_ask').val()
        };

        var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>';
        $.post(ajaxurl, data, function(response) {
            if(response === 'success'){
                alert('Message Sent Successfully!');
                $('.rhp_close').click();
            }
        });
    } 
});
});
</script>

的functions.php

class MY_Posts {    
public static function my_send_message() {        
    if (isset($_POST['message'])) {            
        $to = $_POST['to_author'];
        $headers = 'From: My Page <' . $_POST['email'] . '>';
        $subject = "Hi";            
        ob_start();             
        ?>
        <div>
            Hi
        </div>          

        <?php           
        $message = ob_get_contents();            
        ob_end_clean();
        $mail = wp_mail($to, $subject, $message, $headers);            
        if($mail){
            echo 'success';
        }
    }        
    exit();        
}        
public static function my_mail_content_type() {
    return "text/html";
}
}

因此,当用户在下面的表单中输入“电话号码”和“询问”字段时,它会向管理员(页面作者)发送一个表单。但与此同时,我试图让它更新这两个字段(用户元键)。

我不确定最好的方法是什么。

我猜两种情况:(“电话号码”字段为例)

  • 如果用户已拥有电话号码(之前的值:123-123-1234)并更改为其他内容(新值:986-984-2343),则会保存新值。

  • 如果用户已拥有电话号码(之前的值:123-123-1234),并将其删除(新值:无),则保存新值保留旧的价值。)

当然,如果用户未登录,则无法使用。

1 个答案:

答案 0 :(得分:1)

您无法向班级发送AJAX请求。你需要做的是有一个处理AJAX请求的处理程序文件,如果收到数据,它将运行该函数。

<强> handler.php

if (isset($_POST['someKeyBeingSentByAJAX'])) {
     // Run your function here.
}

您不能直接向类发送AJAX请求。

正确示例

<?php
class Car {     
    public static function getCarType() {
        return "Super Car";
    }
}
?>

然后在你的处理程序文件中,

<?php
require_once 'Car.php';

if(isset($_POST['getCarType'])) {
     $result = Car::getCarType();

     echo $result;
}
?>

您将AJAX请求发布到处理程序,您可以为每个请求创建特定的处理程序,或者您可以拥有一个通用的AJAX处理程序,但是该文件可能会变得非常大且难以维护。