Codeigniter - 哪里可以存储Angular 2.0组件?

时间:2016-08-14 11:37:28

标签: angularjs codeigniter

Angular 2.0教程将index.html文件放在根目录中。

e.g。

/my-application
     /app
         app.component.ts
         ...
     index.html

Codeigniter将视图存储在my-application/views

e.g。

/my-application
    /views
        index.html

我应该在哪里为Angular 2.0创建app目录?在/views

感谢。

1 个答案:

答案 0 :(得分:0)

在根目录中创建一个_assets文件夹,然后将组件存储在那里

然后打开config.php并定义组件的路径,如下所示

$config['base_url'] = 'http://'. $_SERVER['HTTP_HOST'] .'/your-site/';
define('CSS', $config['base_url'].'_assets/css/');
define('JS', $config['base_url'].'_assets/js/');
define('IMG', $config['base_url'].'_assets/img/');