使用ajax drupal插入查询

时间:2015-02-23 12:22:36

标签: ajax database drupal-modules drupal-ajax

我对Drupal Ajax完全不熟悉。在我的项目中,一个简单的表单只有提交按钮,用于插入"是"数据库的价值。所以它应该用Drupal Ajax来完成。因此,当该按钮提交时,该值应存储在Db中,不包括页面加载和提交后显示文本"成功选择"而不是按钮。

所以请任何人都可以帮我完成这项任务

2 个答案:

答案 0 :(得分:0)

使用Drupal Webform Ajax模块可以帮助您。

答案 1 :(得分:0)

在这里,我创建了一个无需重新加载页面即可提交的按钮。

<?php

function db_store_form($form, &$form_state)
{
    $form['add_button'] = array(
        '#type'  => 'submit',
        '#name'  => 'Yes',
        '#value' => 'Yes',
        '#prefix' => '<div id="wrapper">',
        '#suffix' => '</div>',
        '#ajax' => array(
            'callback' => 'ajax_yes_callback',
            'wrapper' => 'wrapper',
            'method' => 'replace',
            'effect' => 'fade',
        ),
    );
    return $form;
}

function db_store_form_submit($form, &$form_state)
{
    drupal_set_message('Yes has been stored in yes_variable');
    // Store yes in db
    variable_set('yes_variable', 'yes');
}

function ajax_yes_callback($form, $form_state) {
    return $form['add_button'];
}

function db_store_menu()
{
    $items = array();

    $items['db_store'] = array(
        'title'           => 'db store',
        'page callback'   => 'drupal_get_form',
        'page arguments'  => array('db_store_form'),
        'access callback' => array(TRUE),
        'type'            => MENU_CALLBACK,
    );

    return $items;
}