0

我知道之前有人问过“无法绑定味精”,但我认为在我的情况下是不同的......

当我的应用程序在调试模式下运行时,我收到一些警告,我不确定如何解决...

[trace] warning: unable to bind to property 'nonCreditRelevantLabel' on class 'com.company.model::Counterparty'

[Bindable]
[RemoteClass(alias="com.company.model.Counterparty")]
public class Counterparty extends CounterpartyBase {

public function get nonCreditRelevantLabel():String {
     return nonCreditRelevant == '1' ? 'Yes' : 'No';
}

}

我知道这是一个吸气剂,但没有这样的字段。它包含非信用相关字段的一些逻辑,该字段位于 CounterpartyBase 中,也存在于 java 端的 com.company.model.Counterparty 中。

我在几个地方都有这个,有解决方法吗?

谢谢

4

1 回答 1

0

在 Flex http://www.rubenswieringa.com/blog/binding-read-only-accessors-in-flex中绑定只读 访问器

于 2012-01-16T14:52:47.377 回答