gpt4 book ai didi

javascript - 如何在 WordPress 中将 $wpdb->get_results 作为 json 返回?

转载 作者:行者123 更新时间:2023-11-30 09:18:01 24 4
gpt4 key购买 nike

我在 wordpress 中创建了一个名为 custom_users 的自定义表,我想通过 API 访问记录

函数.php

function get_wp_custom_users()
{
global $wpdb;

$custom_users = $wpdb->get_results("SELECT * FROM wp_custom_users");

foreach ($custom_users as $custom_user)
{
echo $custom_user->first_name.' '.$custom_user->last_name;
}
}

add_action('rest_api_init', function()
{
register_rest_route( 'wpcustomusers/v1', '/users/', array(
'methods' => 'GET',
'callback' => 'get_wp_custom_users'
));
});

API 可以通过 url http://localhost/mywebsite/wp-json/wpcustomusers/v1/users 访问

您知道如何从 API 请求中将 for 循环 中的结果作为 JSON 返回吗?

我希望看到返回的所有字段。感谢您的帮助。

最佳答案

不需要foreach循环,修改如下。

function get_wp_custom_users(){
global $wpdb;

$custom_users = $wpdb->get_results("SELECT * FROM wp_custom_users");

//change as below.
echo json_encode($custom_users);
}

关于javascript - 如何在 WordPress 中将 $wpdb->get_results 作为 json 返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53702733/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com