#1 xim1119
spcontrollerpublic function articleEditPage(){... import(APP_PATH.'/include/fckeditor/fckeditor.php');
$editorObj = new FCKeditor('contents');
$editorObj->BasePath = './include/fckeditor/'; // 修改相对地址
$editorObj->InstanceName = 'editorContent';
$editorObj->Value = $this->articleinfo['content'];
$this->editor = $editorObj->CreateHtml();
}else{
$this->jump(spUrl("article", "articleListPage"));
}
$this->display("article/edit.html");
} template中...