1

jq_link_to_remote を使用して POST 経由でフォームを送信し、div を更新するにはどうすればよいですか?

testSuccess.php

 <div id="list">
 <form name="list" action="<?= url_for('shoppinglist/update'); ?>" method="post">
 .
 //some input text.
 .
 <?php
 function addlink() {

$linkname = "+";
 return jq_link_to_remote($linkname, array(
    'update' => 'list',
    'url' => 'shoppinglist/update',
    'data' => 'list', //this might be the problem.
    'loading' => jq_visual_effect('fadeIn', '#indicator'),
    'complete' => jq_visual_effect('fadeOut', '#indicator'),
    'method' => 'post',
 ));

}
echo addlink();
?>
<INPUT TYPE="button" VALUE="Cart" onClick="submitForm()">
</form>
</div>

アップデート

これを使用する場合:

<?php
echo form_remote_tag( array(
'url'      => '@shoppinglist/update', // even when I don't type "@“
'update'   => 'list',
'loading'  => jq_visual_effect('fadeIn', '#indicator'),
'complete' => jq_visual_effect('fadeOut', '#indicator'),
 ));
 ?>

エラー: 未定義関数 form_remote_tag() の呼び出し

これを使用する場合:

function addlink() {

$linkname = "+";
 return jq_form_remote_tag($linkname, array(
     'url' => '@shoppinglist/update', // even when I don't type "@“
    'update' => 'list',
    'loading' => jq_visual_effect('fadeIn', '#indicator'),
    'complete' => jq_visual_effect('fadeOut', '#indicator'),
    'method' => 'post',
 ));

}
//I just echo a link!
echo  addlink();

Error: Notice: Undefined index: url in ... JQueryHelper.php 行 353 および 410

4

1 に答える 1

1

jq_form_remote_tag代わりに使ってみませんか?

<?php echo jq_form_remote_tag(array(
  'url'      => 'shoppinglist/update',
  'update'   => 'list',
  'loading'  => jq_visual_effect('fadeIn', '#indicator'),
  'complete' => jq_visual_effect('fadeOut', '#indicator'),
)) ?>

addlinkとの違いがわかりませんsubmitForm

編集:

まあ、そのようにテンプレートを設定する必要があります

<div id="list">
  <?php echo jq_form_remote_tag(array(
  'url'      => 'shoppinglist/update',
  'update'   => 'list',
  'loading'  => jq_visual_effect('fadeIn', '#indicator'),
  'complete' => jq_visual_effect('fadeOut', '#indicator'),
  )) ?>

    //some input text.

    <input type="submit" value="Cart" />
  </form>
</div>
于 2012-07-31T07:18:24.463 に答える