0

我对 Drupal Ajax 完全陌生。在我的项目中,一个带有提交按钮的简单表单仅用于向数据库插入“是”值。所以应该用 Drupal Ajax 来完成。因此,当该按钮提交时,应将值存储在 Db 中而无需页面加载,并且在提交后显示文本“成功选择”而不是按钮。

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

4

2 回答 2

0

使用 Drupal Webform Ajax模块可能会对您有所帮助。

于 2015-03-16T12:19:51.603 回答
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;
}
于 2016-04-29T21:18:27.307 回答