componentDidMount(){
fetch("http://localhost/static/db.json")
.then(res=> res.json())
.then(data=> // что-то )
}
...
class Page extends CI_Controller {
public function index()
{;
$this->smrt->display('header.tpl');
$this->smrt->display('menu.tpl');
$this->smrt->display('main-page.tpl');
$this->smrt->display('footer.tpl');
}
}
...
//= template/tpl.html