1

我不太确定这个错误是什么,环顾四周,它一定与数据库声明有关。我试图在我的小部件上制作一个下拉框,通过选择数据库的不同字段,将选择不同的掩码,并允许在以后的页面上制作不同的小部件。

我认为错误所在的代码部分是:

$this->build("p4a_db_source", "login")
        ->setTable("meetingrooms")
        ->addJoin("login.meetingrooms",
                  "login.meetingrooms.MeetingRoom = login.meetingrooms.MeetingRoom",
                  array('position'=>'Ident'))
        ->addOrder("position")
        ->load();

    $this->setSource($this->login);
    $this->firstRow();
    $this->build('p4a_field','location')
    ->setSource('login')
    ->setLabel('location')
    ->setValue('Please Select...')
    ->setType('select')     
    ->setWidth(60);
    $this->weight->label->setWidth(60);

我知道它与我以前的问题类似,但它完全不同的代码,但是这个应该更容易修复。谢谢您的帮助。

Stacktrace(致命错误:在第 468 行的 C:\xampp\htdocs\p4a\p4a\objects\widgets\field.php 中的非对象上调用成员函数 getPk())未指示错误正在发生,所以我不确定问题到底出在哪里,

其余代码(包括以前的)是:

class main_dashboard_mask extends P4A_Base_Mask
{
public function __construct()
{
    parent::__construct();
    $this->setTitle("Dashboard");

    $this->build('p4a_field','MeetingRooms');
    $this->MeetingRooms->setLabel("This is the meeting room label");
    $this->build('p4a_button', 'continue')
    ->setLabel('Continue?')
    ->implement("onclick", $this, "change");
   $this->build('p4a_field','booking')
    ->setlabel('Viewing?')
    ->setType('checkbox')
    ->setValue(true);
    $this->booking->label->setTooltip('If you are booking a meeting room, check this box');

    $this->build("p4a_db_source", "login")
        ->setTable("meetingrooms")
        ->addJoin("login.meetingrooms",
                  "login.meetingrooms.MeetingRoom = login.meetingrooms.MeetingRoom",
                  array('position'=>'Ident'))
        ->addOrder("position")
        ->load();

    $this->setSource($this->login);
    $this->firstRow();
    $this->build('p4a_field','location')
    ->setSource('login')
    ->setLabel('location')
    ->setValue('Please Select...')
    ->setType('select')     
    ->setWidth(60);
    $this->weight->label->setWidth(60);
    $this->Meetingrooms();
}

private function Meetingrooms()
{
    $this->build('P4A_fieldset', 'widgetframe')
    ->anchor($this->location)
    ->anchorLeft($this->booking)
    ->anchorLeft($this->continue)
    ->setLabel('Meeting Room Bookings');
}

}
4

3 回答 3

1

我认为你没有得到对象。这就是为什么它给出非对象的错误。只需打印调用 getPk() 方法的对象。如果它是有效对象,则仅调用该方法。

于 2012-10-23T11:25:46.867 回答
1

我明白了,对不起,我找对了地方,但没有看到我错在哪里……

代码之前的位置->

 $this->setSource($this->login);
$this->firstRow();
$this->build('p4a_field','location')
->setSource('login') // <- this is the error(the Pk variable hasn't been set here)
->setLabel('location')
->setValue('Please Select...')
->setType('select')     
->setWidth(60);
$this->weight->label->setWidth(60);
$this->Meetingrooms();

修复是->

 ->setSource($this->login)

感谢您的帮助=]

于 2012-10-23T14:06:12.410 回答
0

你有完整的堆栈跟踪吗?哪一行代码准确地产生了这个错误?

无论如何,您必须找到$object->getPk()调用的代码。该错误意味着您正在尝试->getPk()在..$objectnull

于 2012-10-23T11:25:36.343 回答