首页 > Web开发 > 详细

phalcon: 资源文件管 理 引入css,js

时间:2016-09-18 23:52:02      阅读:813      评论:0      收藏:0      [点我收藏+]
<?php

class IndexController extends Phalcon\Mvc\Controller
{
    public function index()
    {

        //添加本地css资源
        $this->assets
            ->addCss(‘css/style.css‘)
            ->addCss(‘css/index.css‘);

        //添加本地js资源
        $this->assets
            ->addJs(‘js/jquery.js‘)
            ->addJs(‘js/bootstrap.min.js‘);

    }
}

  

 

 

phtml:

<html>

    
<head>

        
<title>
Some amazing website
</title>

        <?php $this->assets->outputCss() ?>
    
</head>

    
<body>


        <!-- ... -->

        <?php $this->assets->outputJs() ?>
    
</body>

<html>

  

 

方法二:远程文件

<?php

public function indexAction()
{

    //添加远程及本地资源
    $this->assets
        ->addCss(‘//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css‘, true )
        ->addCss(‘css/style.css‘, false );
}

  

phtml:

同上

 

 

方法三:

<?php

//html头部的js资源
$this->assets
    ->collection(‘header‘)
    ->addJs(‘js/jquery.js‘)
    ->addJs(‘js/bootstrap.min.js‘);

//html尾部的js资源
$this->assets
    ->collection(‘footer‘)
    ->addJs(‘js/jquery.js‘)
    ->addJs(‘js/bootstrap.min.js‘);

  

 

phtml:

<html>

    
<head>

        
<title>
Some amazing website
</title>

        <?php $this->assets->outputJs(‘header‘) ?>
    
</head>

    
<body>


        <!-- ... -->

        <?php $this->assets->outputJs(‘footer‘) ?>
    
</body>

<html>

  

 

phalcon: 资源文件管 理 引入css,js

原文:http://www.cnblogs.com/achengmu/p/5883282.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!