WordPress 中的 Ajax - 无法获取变量

发布于 2025-01-13 12:15:10 字数 1098 浏览 0 评论 0原文

尝试将帖子 ID 从 jQuery 传输到 PHP,但没有成功...

可以在有效负载中看到变量(Chrome 中的 webtools),但无法在 PHP 中获取变量,

如果有人可以提供帮助 - 我将非常感激:)

jQuery:

$("a.uc_more_btn.btn_reg").click(function(){
        var post_id = $(this).attr("data-id");
        $.ajax({
            type: 'post',
            url: '/wp-admin/admin-ajax.php',
            data: {
                'action': 'get_the_ifarme',
                'pop_post_id' : post_id 
            },
            success: function(data) {
                console.log("Happy");
            }
        });
    });

PHP:

function get_the_ifarme() {
if(isset($_REQUEST['pop_post_id'])){
    $pop_post_id = $_REQUEST['pop_post_id'];
    $iframe_link = get_field("tour_register_link", $pop_post_id);
    echo '<iframe src="'.$iframe_link.'" height="820"></iframe>';
}
}
add_shortcode( 'tickets_iframe', 'get_the_ifarme');
add_action( 'wp_ajax_get_the_ifarme', 'get_the_ifarme' );
add_action( 'wp_ajax_nopriv_get_the_ifarme', 'get_the_ifarme' );

此函数也需要是短代码,因为 iframe 将放置在 Elementor 弹出窗口中。

Trying to transfer post ID from jQuery to PHP, without success ...

Can see the variable in the payload (webtools in Chrome), but can't get the variable in PHP,

If anyone can help - I would be very grateful :)

jQuery:

$("a.uc_more_btn.btn_reg").click(function(){
        var post_id = $(this).attr("data-id");
        $.ajax({
            type: 'post',
            url: '/wp-admin/admin-ajax.php',
            data: {
                'action': 'get_the_ifarme',
                'pop_post_id' : post_id 
            },
            success: function(data) {
                console.log("Happy");
            }
        });
    });

PHP:

function get_the_ifarme() {
if(isset($_REQUEST['pop_post_id'])){
    $pop_post_id = $_REQUEST['pop_post_id'];
    $iframe_link = get_field("tour_register_link", $pop_post_id);
    echo '<iframe src="'.$iframe_link.'" height="820"></iframe>';
}
}
add_shortcode( 'tickets_iframe', 'get_the_ifarme');
add_action( 'wp_ajax_get_the_ifarme', 'get_the_ifarme' );
add_action( 'wp_ajax_nopriv_get_the_ifarme', 'get_the_ifarme' );

This function also needs to be a shortcode because the iframe will be placed in Elementor pop-up.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

匿名。 2025-01-20 12:15:10

尝试使用 $_POST['pop_post_id'] 访问它。

Try access it using $_POST['pop_post_id'].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文