Home > Backend Development > PHP Tutorial > php ci框架中加载css和js文件失败的原因及解决方法

php ci框架中加载css和js文件失败的原因及解决方法

WBOY
Release: 2016-06-23 13:45:05
Original
1087 people have browsed it

在将html页面整合到ci框架里面的时候,加载css和js失败。原因是ci框架是入口的框架

对框架中文件的所有请求都需要经过index.php处理完成,当加载外部的css和js文件的时候要使

用base_url()函数处理外部的链接。

在控制器中需要先载入url相关的类


public function test(){		$this->load->helper('url');		$this->load->view('admin/test');}
Copy after login

在test.php的view视图中。


可以用


需要在配置文件config.php中声明

$config['base_url'] = 'http://127.0.0.1/company/';


这样就可以正常加载了








source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template