如何为每个Ajax请求获得唯一的随机数?


11

我已经看到了一些有关让Wordpress为随后的Ajax请求重新生成唯一随机数的讨论,但是对于我一生,我实际上无法让Wordpress做到这一点–每当我请求我认为应该是新的东西时随机数,我从Wordpress得到了相同的随机数。我了解WP的nonce_life的概念,甚至将其设置为其他名称,但这对我没有帮助。

我不会通过本地化在标题的JS对象中生成随机数,而是在显示页面上生成。我可以让我的页面处理Ajax请求,但是当我从回调中的WP请求新的随机数时,我又得到了相同的随机数,而且我不知道自己在做什么错...最终,我想扩展此功能,以便页面上可以有多个项目,每个项目都具有添加/删除的功能-因此我需要一种解决方案,该解决方案将允许一个页面中的多个后续Ajax请求。

(我应该说我已经将所有这些功能都放入了插件中,因此前端的“显示页面”实际上是该插件附带的功能...)

functions.php:本地化,但是我不在这里创建一个随机数

wp_localize_script('myjs', 'ajaxVars', array('ajaxurl' => 'admin-ajax.php')));

调用JS:

$("#myelement").click(function(e) {
    e.preventDefault();
    post_id = $(this).data("data-post-id");
    user_id = $(this).data("data-user-id");
    nonce = $(this).data("data-nonce");
    $.ajax({
      type: "POST",
      dataType: "json",
      url: ajaxVars.ajaxurl,
      data: {
         action: "myfaves",
         post_id: post_id,
         user_id: user_id,
         nonce: nonce
      },
      success: function(response) {
         if(response.type == "success") {
            nonce = response.newNonce;
            ... other stuff
         }
      }
  });
});

接收PHP:

function myFaves() {
   $ajaxNonce = 'myplugin_myaction_nonce_' . $postID;
   if (!wp_verify_nonce($_POST['nonce'], $ajaxNonce))
      exit('Sorry!');

   // Get various POST vars and do some other stuff...

   // Prep JSON response & generate new, unique nonce
   $newNonce = wp_create_nonce('myplugin_myaction_nonce_' . $postID . '_' 
       . str_replace('.', '', gettimeofday(true)));
   $response['newNonce'] = $newNonce;

   // Also let the page process itself if there is no JS/Ajax capability
   } else {
      header("Location: " . $_SERVER["HTTP_REFERER"];
   }
   die();
}

前端PHP显示功能,其中包括:

$nonce = wp_create_nonce('myplugin_myaction_nonce_' . $post->ID);
$link = admin_url('admin-ajax.php?action=myfaves&post_id=' . $post->ID
   . '&user_id=' . $user_ID
   . '&nonce=' . $nonce);

echo '<a id="myelement" data-post-id="' . $post->ID
   . '" data-user-id="' . $user_ID
   . '" data-nonce="' . $nonce
   . '" href="' . $link . '">My Link</a>';

在这一点上,我会真的感激任何在获得WP再生为每个新的Ajax请求的唯一线索现时或指针...


更新:我已经解决了我的问题。上面的代码段是有效的,但是我在PHP回调中更改了$ newNonce创建,以附加一个微秒的字符串,以确保它在后续的Ajax请求中是唯一的。


非常简短的外观来看:您是在收到现成的(现成的)现成的现时吗?为什么在本地电话中不创建它?
kaiser

jQuery使用a#myelement链接中“ data-nonce”属性的初始随机数,其思想是该页面可以由Ajax或自身处理。在我看来,通过本地化调用一次创建随机数会将其从非JS处理中排除,但是我对此可能是错误的。无论哪种方式,Wordpress都会给我同样的随机数……
Tim

另外:不能将随机数放入本地化调用中,以防止一个人在页面上有多个项目,而每个项目中的每个项目都可能具有针对Ajax请求的唯一随机数?
2013年

在本地化环境中创建随机数将创建该随机数并将其用于该脚本。但是,您也可以添加数量不限的其他(称为键)本地化值(带有单独的随机数)。
kaiser

如果您已解决问题,建议您张贴答案并标记为“已接受”。这将有助于保持网站的井井有条。我只是在弄乱您的代码,而有些事情对我不起作用,因此请双倍要求您发布解决方案。
s_ha_dum 2013年

Answers:


6

对于我自己的问题,这是一个非常冗长的答案,不仅仅涉及解决为后续Ajax请求生成唯一随机数的问题。这是为回答目的而通用的“添加到收藏夹”功能(我的功能允许用户将照片附件的帖子ID添加到收藏夹列表中,但这可能适用于依赖于其他各种功能Ajax)。我将此代码编码为独立的插件,但缺少一些内容,但是如果您要复制功能,则应该有足够的细节来提供要点。它可以在单个帖子/页面上工作,但也可以在帖子列表中工作(例如,您可以通过Ajax将列表项添加/删除到收藏夹内联中,并且每个帖子针对每个Ajax请求都有其自己的唯一现时)。请记住,

scripts.php

/**
* Enqueue front-end jQuery
*/
function enqueueFavoritesJS()
{
    // Only show Favorites Ajax JS if user is logged in
    if (is_user_logged_in()) {
        wp_enqueue_script('favorites-js', MYPLUGIN_BASE_URL . 'js/favorites.js', array('jquery'));
        wp_localize_script('favorites-js', 'ajaxVars', array('ajaxurl' => admin_url('admin-ajax.php')));
    }
}
add_action('wp_enqueue_scripts', 'enqueueFavoritesJS');

favorite.js(可以删除的许多调试内容)

$(document).ready(function()
{
    // Toggle item in Favorites
    $(".faves-link").click(function(e) {
        // Prevent self eval of requests and use Ajax instead
        e.preventDefault();
        var $this = $(this);
        console.log("Starting click event...");

        // Fetch initial variables from the page
        post_id = $this.attr("data-post-id");
        user_id = $this.attr("data-user-id");
        the_toggle = $this.attr("data-toggle");
        ajax_nonce = $this.attr("data-nonce");

        console.log("data-post-id: " + post_id);
        console.log("data-user-id: " + user_id);
        console.log("data-toggle: " + the_toggle);
        console.log("data-nonce: " + ajax_nonce);
        console.log("Starting Ajax...");

        $.ajax({
            type: "POST",
            dataType: "json",
            url: ajaxVars.ajaxurl,
            data: {
                // Send JSON back to PHP for eval
                action : "myFavorites",
                post_id: post_id,
                user_id: user_id,
                _ajax_nonce: ajax_nonce,
                the_toggle: the_toggle
            },
            beforeSend: function() {
                if (the_toggle == "y") {
                    $this.text("Removing from Favorites...");
                    console.log("Removing...");
                } else {
                    $this.text("Adding to Favorites...");
                    console.log("Adding...");
                }
            },
            success: function(response) {
                // Process JSON sent from PHP
                if(response.type == "success") {
                    console.log("Success!");
                    console.log("New nonce: " + response.newNonce);
                    console.log("New toggle: " + response.theToggle);
                    console.log("Message from PHP: " + response.message);
                    $this.text(response.message);
                    $this.attr("data-toggle", response.theToggle);
                    // Set new nonce
                    _ajax_nonce = response.newNonce;
                    console.log("_ajax_nonce is now: " + _ajax_nonce);
                } else {
                    console.log("Failed!");
                    console.log("New nonce: " + response.newNonce);
                    console.log("Message from PHP: " + response.message);
                    $this.parent().html("<p>" + response.message + "</p>");
                    _ajax_nonce = response.newNonce;
                    console.log("_ajax_nonce is now: " + _ajax_nonce);
                }
            },
            error: function(e, x, settings, exception) {
                // Generic debugging
                var errorMessage;
                var statusErrorMap = {
                    '400' : "Server understood request but request content was invalid.",
                    '401' : "Unauthorized access.",
                    '403' : "Forbidden resource can't be accessed.",
                    '500' : "Internal Server Error",
                    '503' : "Service Unavailable"
                };
                if (x.status) {
                    errorMessage = statusErrorMap[x.status];
                    if (!errorMessage) {
                        errorMessage = "Unknown Error.";
                    } else if (exception == 'parsererror') {
                        errorMessage = "Error. Parsing JSON request failed.";
                    } else if (exception == 'timeout') {
                        errorMessage = "Request timed out.";
                    } else if (exception == 'abort') {
                        errorMessage = "Request was aborted by server.";
                    } else {
                        errorMessage = "Unknown Error.";
                    }
                    $this.parent().html(errorMessage);
                    console.log("Error message is: " + errorMessage);
                } else {
                    console.log("ERROR!!");
                    console.log(e);
                }
            }
        }); // Close $.ajax
    }); // End click event
});

功能(前端显示和Ajax操作)

要输出“添加/删除收藏夹”链接,只需通过以下方式在您的页面/帖子上调用它:

if (function_exists('myFavoritesLink') {
    myFavoritesLink($user_ID, $post->ID);
}

前端显示功能:

function myFavoritesLink($user_ID, $postID)
{
    global $user_ID;
    if (is_user_logged_in()) {
        // Set initial element toggle value & link text - udpated by callback
        $myUserMeta = get_user_meta($user_ID, 'myMetadata', true);
        if (is_array($myUserMeta['metadata']) && in_array($postID, $myUserMeta['metadata'])) {
            $toggle = "y";
            $linkText = "Remove from Favorites";
        } else {
            $toggle = "n";
            $linkText = "Add to Favorites";
        }

        // Create Ajax-only nonce for initial request only
        // New nonce returned in callback
        $ajaxNonce = wp_create_nonce('myplugin_myaction_' . $postID);
        echo '<p class="faves-action"><a class="faves-link"' 
            . ' data-post-id="' . $postID 
            . '" data-user-id="' . $user_ID  
            . '" data-toggle="' . $toggle 
            . '" data-nonce="' . $ajaxNonce 
            . '" href="#">' . $linkText . '</a></p>' . "\n";

    } else {
        // User not logged in
        echo '<p>Sign in to use the Favorites feature.</p>' . "\n";
    }

}

Ajax动作功能:

/**
* Toggle add/remove for Favorites
*/
function toggleFavorites()
{
    if (is_user_logged_in()) {
        // Verify nonce
        $ajaxNonce = 'myplugin_myaction' . $_POST['post_id'];
        if (! wp_verify_nonce($_POST['_ajax_nonce'], $ajaxNonce)) {
            exit('Sorry!');
        }
        // Process POST vars
        if (isset($_POST['post_id']) && is_numeric($_POST['post_id'])) {
            $postID = $_POST['post_id'];
        } else {
            return;
        }
        if (isset($_POST['user_id']) && is_numeric($_POST['user_id'])) {
            $userID = $_POST['user_id'];
        } else {
            return;
        }
        if (isset($_POST['the_toggle']) && ($_POST['the_toggle'] === "y" || $_POST['the_toggle'] === "n")) {
            $toggle = $_POST['the_toggle'];
        } else {
            return;
        }

        $myUserMeta = get_user_meta($userID, 'myMetadata', true);

        // Init myUserMeta array if it doesn't exist
        if ($myUserMeta['myMetadata'] === '' || ! is_array($myUserMeta['myMetadata'])) {
            $myUserMeta['myMetadata'] = array();
        }

        // Toggle the item in the Favorites list
        if ($toggle === "y" && in_array($postID, $myUserMeta['myMetadata'])) {
            // Remove item from Favorites list
            $myUserMeta['myMetadata'] = array_flip($myUserMeta['myMetadata']);
            unset($myUserMeta['myMetadata'][$postID]);
            $myUserMeta['myMetadata'] = array_flip($myUserMeta['myMetadata']);
            $myUserMeta['myMetadata'] = array_values($myUserMeta['myMetadata']);
            $newToggle = "n";
            $message = "Add to Favorites";
        } else {
            // Add item to Favorites list
            $myUserMeta['myMetadata'][] = $postID;
            $newToggle = "y";
            $message = "Remove from Favorites";
        }

        // Prep for the response
        // Nonce for next request - unique with microtime string appended
        $newNonce = wp_create_nonce('myplugin_myaction_' . $postID . '_' 
            . str_replace('.', '', gettimeofday(true)));
        $updateUserMeta = update_user_meta($userID, 'myMetadata', $myUserMeta);

        // Response to jQuery
        if($updateUserMeta === false) {
            $response['type'] = "error";
            $response['theToggle'] = $toggle;
            $response['message'] = "Your Favorites could not be updated.";
            $response['newNonce'] = $newNonce;
        } else {
            $response['type'] = "success";
            $response['theToggle'] = $newToggle;
            $response['message'] = $message;
            $response['newNonce'] = $newNonce;
        }

        // Process with Ajax, otherwise process with self
        if (! empty($_SERVER['HTTP_X_REQUESTED_WITH']) && 
            strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
                $response = json_encode($response);
                echo $response;
        } else {
            header("Location: " . $_SERVER["HTTP_REFERER"]);
        }
        exit();
    } // End is_user_logged_in()
}
add_action('wp_ajax_myFavorites', 'toggleFavorites');

3

我真的不得不质疑为每个ajax请求获取一个新的随机数的原因。原始随机数将过期,但直到可以使用一次以上。让javascript通过ajax接收它会破坏目的,尤其是在出现错误情况时提供它。(随机数的目的是在一定时间范围内将动作与用户相关联的安全性。)

我不应该提及其他答案,但是我是新来的,不能在上面评论,因此关于发布的“解决方案”,您每次都会获得一个新的随机数,但在请求中未使用它。每次都将微秒设置为相同的值以匹配以这种方式创建的每个新随机数肯定是棘手的。PHP代码正在针对原始随机数进行验证,而javascript正在提供原始随机数...因此它可以正常工作(因为它尚未过期)。


1
问题是,nonce在使用后过期,并且每次都会在ajax函数中返回-1。如果您要验证PHP中表单的一部分并返回错误以进行打印,则会出现问题。使用了表单随机数,但是在字段的php验证中实际上发生了错误,并且当表单再次提交时,这次,它无法被验证并check_ajax_referer返回-1,这不是我们想要的!
所罗门·克洛森
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.