我知道这是其他时候提出的问题,但是提供的解决方案对我不起作用。因为相关的问题已经很老了,所以我不知道是否应该评论它们,而是创建一个新的问题。
这里有一些类似的问题:
Confirm message not working on postLink with icon
cakePHP 3.0 and bootstrap glyphicons
按照我在CakePHP 3.7.9中编写此代码的建议:
<?= $this->Form->postLink(
$this->Html->tag('i', '', ['class' => 'fa fa-remove']),
[
'controller' => 'itemOrders',
'action' => 'delete', $item->id
],
[
'escapeTitle' => false,
'confirm' => __('Are you sure you want to delete # {0}?', $item->id),
'class'=>'btn btn-danger btn-xs'
])
?>
显示图标,操作已执行,但完全没有确认。 但是我看不出其他问题中提出的代码有所不同。