//Config/bootstrap.php
class AppController extends Controller {
public $components = array(
'DebugKit.Toolbar',
'Security' => array('csrfUseOnce' => false,'csrfExpires' => '+1 hour'),
'Session',
//more code below
我改变的是删除DebugKit.Toolbar然后没有显示bootstrap模式。
//default.ctp anchor tag
<li><?=$this->Html->link('Sign in', '/signin',array('data-toggle'=>'modal','data-remote'=>'false','data-target'=>'#signin'));?></li>
//default.ctp modal
<section class="modal fade" id="signin" tabindex="-1" role="dialog" aria-labelledby="Sign in" aria-hidden="true">
//some other code
</section>
//default.ctp script
</footer>
<?php
echo $this->Html->script(array('bootstrap','jquery.min','holder'));
?>
</body>
我完全感到困惑,因为如何卸载插件使得引导模式与无法工作无关?知道我做错了吗?
答案 0 :(得分:1)
DebugKit
使用jQuery
。 bootstrap可能使用了那个,而不是你layout
中包含的那个。
您可能希望在引导程序之前包含jquery.min
。