yii2用pjax呈现页面的切换按钮

时间:2016-10-23 15:32:46

标签: yii2 pjax yii2-model

我正在尝试根据按下的按钮创建一个更改输入的表单,使用yii2的pjax,不加载页面。

我的观点

            .data
msg1:   .asciiz "\nInput: "
msg2:   .asciiz "Output:\n"
input_sentence: .space 1001 
word:   .space 51

            .text

read_input:
    # print "input: "
    li $v0, 4           
    la $a0, msg1
    syscall
    #Take the string from user
    j read_string


read_string:
    #Reads the string into input_sentence
    li $v0,8
    la $a0,input_sentence
    li $a1,1001
    syscall
    jr $ra

        .globl main  
main:
    jal read_input

这是一个,我尝试使用Button的ActionView但不知道该怎么做,你能给我任何建议吗? 查看

<div id="container-ajax">
           
                 <?php Pjax::begin([]);  
                  echo $this->render('noleggia_andata', ['form' => $form, 'noleggi_partenza' => $noleggi_partenza]);

                Pjax::end(); ?>
             </div>

控制器

<?= Html::a("Go", ['noleggi/noleggia_andata'], ['class' => 'btn-discard-orange']) */ ?>

控制器视图rederAjax

公共功能actionNoleggia_andata()     {

 public function actionNoleggia_andata()
    {

    $noleggi_partenza = new Noleggi_partenza;

   return $this->render('noleggia_andata',['noleggi_partenza' => $noleggi_partenza]);
    }

返回$ this-&gt; renderAjax('noleggia_andata',['noleggi_partenza'=&gt; $ noleggi_partenza]);     }

enter image description here

0 个答案:

没有答案