我有一个返回“Schedule”类的 RemoteObject。我创建了一个客户端 RemoteClass 来映射到它。类实例的所有属性都很好。我只是不清楚如何在课堂上调用方法。我如何在 startdate 上调用 setter?
包 classes.remote { [Bindable] [RemoteClass(alias="com.site.data.schedule.Schedule")] 公共课程时间表 {
public var id:int;
public var modifydate:Date;
public var startdate:Date;
public var enddate:Date;
}
}