gpt4 book ai didi

json - Drupal 创建一个输出 JSON 的页面

转载 作者:行者123 更新时间:2023-12-03 15:06:13 25 4
gpt4 key购买 nike

我想问一下可以创建一个输出 JSON 数据作为对 Jquery Ajax 请求的响应的页面吗?

以非 Drupal 方式,我只需创建一个 php 文件,例如 mypage.php,然后我会使用 http://example.com/mypage.php?foo=bar作为我的 AJAX 请求的 URL。然后,此页面将使用 json_encode() 输出 JSON 数据。

我怎样才能以 Drupal 的方式做到这一点?

最佳答案

scott reynen 的提示的一个工作示例:在 drupal 7 中,
在一个名为 mymodule 的模块中,编写

function mymodule_menu() {
$items['fancystuff/json'] = array(
'access callback' => true, // available to all
'page callback' => 'mymodule_fancystuff_object', // defined below
'delivery callback' => 'drupal_json_output'
);
return $items;
}



function mymodule_fancystuff_object() {
return array('test'=>true,'dummy'=>array(0,1));
}

清除缓存,转到 http://example.com/fancystuff/json看哪

关于json - Drupal 创建一个输出 JSON 的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3636463/

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