0

我正在学习一个 flex 应用程序教程,虽然我已经能够修复我的大部分错误,但这一个让我完全难过。

我有一个名为员工的数据表,其中包含以下列:id、名字、姓氏、职务、生日、手机、办公电话、电子邮件、地址、照片文件。

该应用程序很简单:在 HomeView 中列出所有员工,当您点击员工时,会将您带到 DetailView,您可以在其中看到他们的所有额外信息。然而,每次我这样做时,我都会得到:“ReferenceError:错误 #1056:无法在 valueObjects.Employees 上创建属性地址。”

这是DetailView的代码:

    xmlns:employeesservice1="services.employeesservice1.*"
    overlayControls="false" 
    title="{getEmployeesByIDResult.lastResult.Firstname} {getEmployeesByIDResult.lastResult.Lastname}"
    viewActivate="view1_viewActivateHandler(event)">

<fx:Script>
    <![CDATA[
        import mx.events.FlexEvent;
        import spark.events.ViewNavigatorEvent;
        import mx.rpc.events.ResultEvent;

        protected function goBack(event:Event):void
        {
            navigator.pushView(EmployeeListerHomeView);
        }

        protected function getEmployeesByID(itemID:int):void
        {
            getEmployeesByIDResult.token = employeesService1.getEmployeesByID(itemID);
        }

        protected function view1_viewActivateHandler(event:ViewNavigatorEvent):void
        {
            this.addElement(busyIndicator);
            getEmployeesByID(data as int);
        }
        protected function getAllEmployeesResult_resultHandler(event:ResultEvent):void
        {
            this.removeElement(busyIndicator);
        }   
    ]]>
</fx:Script>
<fx:Declarations>
    <s:CallResponder id="getEmployeesByIDResult" result="getAllEmployeesResult_resultHandler(event)"/>
    <employeesservice1:EmployeesService1 id="employeesService1"/>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:navigationContent>
    <s:Button id="backBtn" click="goBack(event)">
        <s:icon>
            <s:MultiDPIBitmapSource source160dpi="@Embed('assets/save160.png')"
                                    source240dpi="@Embed('assets/save240.png')"
                                    source320dpi="@Embed('assets/save320.png')"/>
        </s:icon>
    </s:Button>
</s:navigationContent>
<s:Image x="10" y="10" width="100" height="100"
         source="http://localhost/EmployeeLister/assets/{getEmployeesByIDResult.lastResult.photofile}128x128.png" />
<s:VGroup width="100%" height="100%" gap="10" paddingLeft="120">
    <s:Label fontWeight="bold" paddingTop="10" text="Title"/>
    <s:Label text="{getEmployeesByIDResult.lastResult.Title}"/>
    <s:Label fontWeight="bold" paddingTop="10" text="Cell Phone"/>
    <s:Label text="{getEmployeesByIDResult.lastResult.Cellphone}"/>
    <s:Label fontWeight="bold" paddingTop="10" text="Office Phone"/>
    <s:Label text="{getEmployeesByIDResult.lastResult.Officephone}"/>
    <s:Label fontWeight="bold" paddingTop="10" text="Email"/>
    <s:Label text="{getEmployeesByIDResult.lastResult.Email}"/>
    <s:Label fontWeight="bold" paddingTop="10" text="Address"/>
    <s:Label text="{getEmployeesByIDResult.lastResult.Address}"/>
</s:VGroup>
<s:BusyIndicator id="busyIndicator" verticalCenter="0" horizontalCenter="0" symbolColor="red"/>

现在需要注意的是:我在创建EmployeesService1之后添加了手机、办公电话、电子邮件和地址列,因此我必须编辑.php 以包含这些新值。所以我担心我可能在那里做错了什么,但我三次检查了拼写错误,我没有在其他值上得到任何错误,所以,我不知道。再一次,这让我很沮丧。我已经测试了服务中的所有操作,它们都返回了所有适当的值。

这是 .php 中的函数: public function getEmployeesByID($itemID) {

    $stmt = mysqli_prepare($this->connection, "SELECT * FROM $this->tablename where id=?");
    $this->throwExceptionOnError();

    mysqli_stmt_bind_param($stmt, 'i', $itemID);        
    $this->throwExceptionOnError();

    mysqli_stmt_execute($stmt);
    $this->throwExceptionOnError();

    mysqli_stmt_bind_result($stmt, $row->id, $row->Firstname, $row->Lastname, $row->Title, $row->Birthday, $row->Cellphone, $row->Officephone, $row->Email, $row->Address, $row->photofile);

    if(mysqli_stmt_fetch($stmt)) {
      $row->Birthday = new DateTime($row->Birthday);
      return $row;
    } else {
      return null;
    }
}

即使您不知道确切的答案,是否有更简单的方法可以让我弄清楚发生了什么?错误窗口中的调用堆栈是所有内部 flex/as3 的东西。所以如果我没有必要,我不想去那个兔子洞。

任何帮助是极大的赞赏。谢谢!!!!

4

1 回答 1

0

弄清楚了。

问题出在 .php 中,在每个生成的getEmployeesBy**()函数之后,都有一个.php 文件@return stdClass

但是,我需要创建一个getEmployeesByName函数,并且在getEmployeesByID()@return stdClass. 所以我只是在@return函数之间添加了另一个,现在一切正常。

于 2013-12-03T16:37:30.593 回答