问题描述
我有一个PHP后端的Flash应用程序。每当出现PHP错误时,就会收到收到确认消息之前已断开连接的通道错误消息。我准备将我的项目推送到beta版本宁愿如果这个消息说更像有一个PHP错误,请记录一个错误或什么东西,而不是他们不明白的消息的东西。
任何人都知道一种方法来改变这个错误信息?顺便说一句,当谈到Flash编程,我几乎是一个小白,所以请描述。使用Flash Builder 4 Beta 2。 解决方案
我准备将我的项目推送到beta版本宁愿如果这个消息说更像有一个PHP错误,请记录一个错误或什么东西,而不是他们不明白的消息的东西。
任何人都知道一种方法来改变这个错误信息?顺便说一句,当谈到Flash编程,我几乎是一个小白,所以请描述。使用Flash Builder 4 Beta 2。 解决方案
只是想通了。在我的PHP服务的声明中,有一个名为fault的参数,默认设置如下:
$ b
fault =Alert.show(event.fault我们可以将消息更改为我们想要的任何东西,通过改变消息提醒。
I have a Flash app with a PHP backend. Whenever there is a PHP error, I get the "Channel Disconnected before an acknowledgement was received" error message.
I'm getting ready to push my project to beta and I would prefer if this message said something more like "There was a PHP error, please log a bug" or something instead of a message they don't understand.
Anyone know of a way for me to change this error message? BTW I'm pretty much a noob when it comes to Flash programming so please be descriptive. Using Flash Builder 4 Beta 2.
Just figured it out. In the declaration of my PHP service, there is a parameter called "fault", which is set the following by default:
fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"
This is where we can change the message to whatever we want, by changing the message that is alerted.
这篇关于Flex - 有没有办法改变“Channel Disconnected”错误信息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!