我正在尝试在Drupal Services API中使用查询字符串结构。这对我不起作用。我还搜索了大多数解决方案,但都失败了。这是m drupal代码:
function rapid_services_resources() {
$resources = array(
'get_data' => array(
'operations' => array(
'retrieve' => array(
'help' => t('Gets user email of uid passed.'),
'callback' => 'my_module_get_user_email',
'args' => array(
array(
'name' => 'nid',
'type' => 'int',
'description' => 'The display ID of the view to get.',
'source' => array('param' => 'nid'),
'optional' => TRUE,
'default value' => 'default',
),
),
'access arguments' => '_blog_access_provide_access',
'access callback' => '_blog_access_provide_access',
//~ 'access arguments append' => FALSE,
),
),
),
);
return $resources;
}
function _blog_access_provide_access() {
return TRUE;
}
function my_module_get_user_email($nid){
var_dump($args);die;
}
我想要这样的URL。:
http://localhost/drupaltest/rapidapi/get_data/?nid=111
请让我知道我在哪里做错了。预先感谢。
嗨,这里是有用的
http://pingv.com/blog/an-indroduction-drupal-7-restful-Services
https://www.drupal.org/node/783460
我也不确定查询字符串,但是对于检索操作,您可以将其设置为URL的一部分例如:
http://localhost/drupaltest/rapidapi/get_data/<nid should be here>
http://localhost/drupaltest/rapidapi/get_data/111
也将源路径用作源
'source' => array('path' => '0'),
我认为源param
仅适用于index
操作,而不得检索