在Codeigniter中,当数据库警报消息中的插入数据未显示时,直接进行重定向

时间:2016-07-14 07:18:54

标签: codeigniter alert

我正在使用codigniter。当我在mysqldb数据中插入或更新数据时,insert.my表单处于弹出状态。然后警报正在获取,但是重定向不起作用..重定向正在弹出窗口中显示而不是页面.can请告诉替代解决方案..我正在使用ajax更新到我的表单

这是我的控制器代码

    $testid=$this->objTests->updateTest();
    echo "<script> alert('sucessfully updated');</script>"
    redirect(base_url().'tests');

这是我的以下模型代码:

$testData = array('simulationId'  => $this->input-   >post('simulationId'),
                  'testTitle'     => $this->input->post('testTitle'),
                  'description '  => $this->input->post('description')           
            );
    $this->db->where('id',$this->input->post('tid'));
    $this->db->update('tests',$testData);
    return $this->input->post('tid');

1 个答案:

答案 0 :(得分:0)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#ff0000"
        android:gravity="center"
        android:padding="5dp"
        android:text="Top TextView"
        android:textColor="#fff" />

    <!-- You can remove min Height if you don't want it-->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#00ffff"
        android:minHeight="100dp">

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <!-- Do you Code here.-->

        </ScrollView>
    </LinearLayout>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#ff0000"
        android:gravity="center"
        android:padding="5dp"
        android:text="Bottom TextView"
        android:textColor="#fff" />

</LinearLayout>