Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个用于评分的 Joomla 组件。我有 3 个观点:
“课程”和“主题”视图现在运行良好,但我对学生视图有一点问题。我的任务是在它的默认视图中创建或添加一个文本字段,并且我已经成功完成了它,但问题是当我添加 JToolbarHelper::save 时它不会保存或更新文本字段中的项目。 . 有什么解决办法吗?
这是示例代码
echo "<input type='text' name='grade' value='".$row->grade."'>"
你能参考你的STUDENTXML文件吗?如果没有像grade你这样的文件,你必须创建它。提交表单后,您将获得帖子值...
STUDENT
grade
在Joomla 2.5您已声明 XML 文件中的所有字段。
Joomla 2.5
exit
echo $this->grade
$this->grade = $_POST['grade']
试试这个......希望这对你有用......