尝试在codeigniter中导入.js文件时出现问题

时间:2017-11-11 00:04:15

标签: javascript php codeigniter

朋友您好我在尝试使用两个.js文件中的某些功能时遇到了问题。我已经尝试过put_url();以及文件的位置,我还添加了' url'在config.php中

DocumentModifiedWhen

我的文件夹名为:js

我收到了Google Chrome控制台的错误:

获取http://[::1]/registro/js/pdf.worker.js net :: ERR_ABORTED

EDITED 控制台错误 enter image description here

2 个答案:

答案 0 :(得分:1)

请求http://[::1]指向常见错误 - $config['base_url']必须正确设置。空字符串不起作用。 /application/config/config.php中的条目看起来应该是这样的。

 $config['base_url'] = "http://example.com/";

请注意,必须包含协议http://和结尾/

答案 1 :(得分:0)

编辑/application/config/config.php文件
删除此行
$config['base_url'] = '';

在config.php文件中输入此代码

$root = "http://".$_SERVER['HTTP_HOST'];
$root .= str_replace(basename($_SERVER['SCRIPT_NAME']), "", $_SERVER['SCRIPT_NAME']);
$config['base_url'] = $root;

编辑/application/config/autoload.php文件。

$autoload['helper'] = array('url');