返回顶部
首页 > 资讯 > CMS >drupal 自定义表单调用autocomplete主标签实现代码
  • 297
分享到

drupal 自定义表单调用autocomplete主标签实现代码

autocomplete 2022-06-12 02:06:39 297人浏览 薄情痞子
摘要

复制代码代码如下: <?PHP function module_name_fORM() { $form = array(); $form['city'] = array( '#title' => t('Cit


复制代码代码如下:

<?PHP

function module_name_fORM() {

$form = array();

$form['city'] = array(

'#title' => t('City'),

'#type' => 'textfield',

'#autocomplete_path' => 'example/autocomplete',//--调用的路径

);

$form['submit'] = array(

'#type' => 'submit',

'#value' => 'Save',

);

return $form;

}

//--定义路径

function module_name_menu() {

$items['example/autocomplete'] = array(

'page callback' => '_module_name_autocomplete', //--调用数据

'access arguments' => array('access example autocomplete'),

'type' => MENU_CALLBACK

);

return $items;

}

//--从数据库读取返回数据

function _module_name_autocomplete($string) {

$matches = array();

// Some fantasy DB table which holds cities

$query = db_select('cities', 'c');

// Select rows that match the string

$return = $query

->fields('c', array('city'))

->condition('c.city', '%' . db_like($string) . '%', 'LIKE')

->range(0, 10)

->execute();

// add matches to $matches

foreach ($return as $row) {

$matches[$row->city] = check_plain($row->city);

}

// return for js

drupal_JSON_output($matches); //--json格式返回

}

?>

--结束END--

本文标题: drupal 自定义表单调用autocomplete主标签实现代码

本文链接: https://lsjlt.com/news/32666.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作