你可以帮我识别问题我正在尝试使用http将数据放入php页面的组合框中 service.there有两个数据记录在php页面中,而不是 显示数据显示在[对象对象] [对象对象]中 组合框列表
这是mxml代码
@namespace s “图书馆://ns.adobe.com/flex/spark”; @namespace mx “图书馆://ns.adobe.com/flex/mx”; {username.text}< /用户名> {emailaddress.text}< / EMAILADDRESS> < /秒:请求> - >
private function send_data():void { userRequest.send(); } private function send_data1():void { userRequest.send(); //testlb.text="testsuccesss"; } ]]> </fx:Script> <s:ComboBox x="197" y="305" width="414" height="32" dataProvider="{userRequest.lastResult.users.user}" labelField="data" > </s:ComboBox> </s:View>
答案 0 :(得分:1)
假设您的结果是XML格式,您应该在labelField中使用的变量名之前使用@。
此外,看到更多代码会很高兴,因为有些代码看起来会被切断。