gpt4 book ai didi

php - Joomla 中的后端操作不起作用

转载 作者:可可西里 更新时间:2023-11-01 12:32:00 24 4
gpt4 key购买 nike

当我创建 Action 然后点击它时,出现 js 错误

未捕获的类型错误:无法读取未定义的属性“任务”(在 chrome 中)
类型错误:b 未定义(在 ff 中)

我的代码是:

view.html.php

<?// no direct access

defined( '_JEXEC' ) or die( 'Restricted access' );

jimport( 'joomla.application.component.view');


class ObshViewObsh extends JView
{

function display($tpl = null)
{

$task = JRequest::getVar('task', '');
switch($task){
case 'config': $this->config();break;
default: $this->windows();
}

parent::display($tpl);
}

function windows(){
JToolBarHelper::title( JText::_( 'Общежития' ), 'generic.png' );
JToolBarHelper::custom('config','options','','Настройки',false); //<<< --- this link doesn't work

}

function config(){
JToolBarHelper::title( JText::_( 'Общежития - настройка компонента' ), 'generic.png' );
JToolBarHelper::apply('edit_config');
JToolBarHelper::cancel('cancel');
}

}

Controller .php

<?php
error_reporting(E_ALL);
// No direct access

defined( '_JEXEC' ) or die( 'Restricted access' );

jimport('joomla.application.component.controller');


class ObshController extends JController
{

function config(){
JRequest::setVar( 'view', 'obsh' );
JRequest::setVar( 'layout', 'config' );
JRequest::setVar( 'hidemainmenu', 1 );
parent::display();
}
}

最佳答案

答案很简单...

我忘了在 View 中添加表单

<form action="index.php" method="post" name="adminForm">

something

<input type="hidden" name="option" value="com_obsh" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
</form>

关于php - Joomla 中的后端操作不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12120445/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com