[对象对象错误]

发布于 2024-10-22 10:50:01 字数 702 浏览 2 评论 0原文

我是一个在 flex4 中编程和开发简单应用程序的新手,以 Coldfusion 作为我的后端,以 MYQSl 作为我的数据库。

我试图使用remoteObject(cfc)在flex的文本输入字段中输出我的数据库信息。

该信息由数据库使用查询和数组集合提供。我只是不确定如何获取查询的数组集合信息并将其显示到 TextInput 字段中。我希望这能更好地解释它,我期待任何可以帮助我完成

示例代码的输入:

<fx:declarations>
<mx:RemoteObject id="myService" destination="ColdFusion"
source="newVirtualJaialai"
result="resultHandler(event)"/>
</fx:declarations>

<mx:Button label="Get Data" initialize="myService.getBranchName()" x="50" y="50"/>

<mxataGrid dataProvider="{myData}" id="dataGrid" />
<mx:FormItem label="Username:" >
<s:TextInput id="username" {myData}/>
<s:Label />
</mx:FormItem>

im a newbie in programming and developing a simple application in flex4 with coldfusion as my back end and MYQSl as my database.

im trying to output my database information in a text input field in flex by using remoteObject(cfc).

The information is being provided by a database using a query and an array collection. I'm just unsure how i go about taking the queried array collection information and display it into TextInput Fields. I hope that explains it a little better and I look forward to any input that could help me out

sample code:

<fx:declarations>
<mx:RemoteObject id="myService" destination="ColdFusion"
source="newVirtualJaialai"
result="resultHandler(event)"/>
</fx:declarations>

<mx:Button label="Get Data" initialize="myService.getBranchName()" x="50" y="50"/>

<mxataGrid dataProvider="{myData}" id="dataGrid" />
<mx:FormItem label="Username:" >
<s:TextInput id="username" {myData}/>
<s:Label />
</mx:FormItem>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心安伴我暖 2024-10-29 10:50:01

如果您将 MyData 绑定为网格的 dataProvider,我可以假设 MyData 是集合/数组,并且当您尝试将其绑定到 text (:String) 您的 TextInput 属性您收到“[object Object error]”(实际上这不是一个错误,请尝试 _anyObject_.toString () ,你会得到相同的结果),所以你需要绑定这个集合的某个项目的一些属性。如果您想显示网格中所选项目的数据,可以使用 text="{dataGrid.selectedItem._someProperty_}"。

If you are binding MyData as dataProvider for your grid, I can suppose that MyData is collection/array, and when you are trying to bind it to text (:String) property of your TextInput you are getting your "[object Object error]" (actually this is not an error, try _anyObject_.toString() and you will get the same), so you need to bind some property of an item of this collection. If you want to display data of item that was selected in your grid, you can use text="{dataGrid.selectedItem._someProperty_}".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文