我的系统中有一组测试。测试可能会暂停。在我的测试控制器的索引页面上,我使用以下代码来显示测试。
<table>
<tr><th>ID</th><th>Name</th><th>Updated</th><th>Actions</th></tr>
<?php foreach ($tests as $test): ?>
<tr>
<td>
<?php echo $test['Test']['id']; ?>
</td>
<td class="actions">
<?php
$status = ($test['Test']['is_paused'] == 1) ? 'Un-pause' : 'Pause';
echo $this->Form->postLink($status, array('controller'=>'tests', 'action' => 'pause', $test['Test']['id'], 'admin' => 1), array('confirm'=>'Are you sure?') );
?>
<?php
echo $this->Html->link('Edit', array('controller'=>'tests', 'action' => 'edit', 'admin'=>1, $test['Test']['id']));
?>
<?php
echo $this->Form->postLink('Delete', array('controller'=>'tests', 'action' => 'delete', $test['Test']['id'], 'admin'=>1), array('confirm'=>'Are you sure?') );
?>
</td>
</tr>
<?php endforeach; ?>
</table>
postlink
这会生成一个测试列表,并为使用cakephp 表单助手的每个测试提供一些操作函数。导致问题的是暂停按钮。有时单击它会引发以下错误。
Uncaught TypeError: Object #<HTMLCollection> has no method 'submit'
第一次单击暂停时几乎不会发生此错误。暂停可以切换,所以这个错误通常会在暂停切换几次后弹出。我对我的 JS 不是超级满意,而且因为这个 JS 是自动构建的,所以我不知道如何解决这个问题。发生此问题时,暂停按钮将不起作用,我什至不确定从哪里开始调试。感谢任何提供帮助的人。
更新:这是通过 postlink 在浏览器中呈现的 html 代码:
<form action="/admin/tests/pause/5" name="post_521370eb05d3f" id="post_521370eb05d3f" style="display:none;" method="post">
<input type="hidden" name="_method" value="POST">
</form>
<a href="#" onclick="if (confirm('Are you sure?')) { document.post_521370eb05d3f.submit(); } event.returnValue = false; return false;">Un-pause</a>
看起来代码document.post_521370eb05d3f.submit();
是问题所在,如果我不得不猜测,我认为由于某种原因document.post_521370eb05d3f
没有提交方法。我不知道如何解决这个问题。