我需要在我的网站前端显示一个简单的编辑器。我试图以这种方式在我的 Public_Controller 中附加所见即所得的编辑器:
function ask(){
$this->template
->title('ask your question')
->append_metadata($this->load->view('fragments/wysiwyg', $this->data, TRUE))
->build('user/ask');
}
但是当我尝试查看我的前端页面时,我收到了这个错误:
An Error Was Encountered
Unable to locate the file: fragments/wysiwyg.php
我该如何解决?