我的Robotlegs应用程序中的某些服务需要参数。我想知道哪种解决方案更好:
答案 0 :(得分:2)
正如Creynders建议的那样,它取决于这些变量的范围,如果它们是常量,模型或用户输入。
对我而言,一个很好的资源是ActionScript Developer的RobotLegs指南:http://books.google.ca/books/about/ActionScript_Developer_s_Guide_to_Robotl.html?id=PFA2TWqZdSMC&redir_esc=y
这是我通常的工作流程:
命令调用服务,传递任何必要的参数。在下面的示例中,我将一个变量从LoadLicenseEvent和ITokenModel传递给服务调用。我使用commandMap.detain()和commandMap.release()来使命令保持活动状态,直到服务调用完成。基类ServiceModuleCommand处理故障事件。
public class LoadLicenseCommand extends ServiceModuleCommand
{
[Inject]
public var event:LoadLicenseEvent;
[Inject]
public var service:ILicenseService;
[Inject]
public var tokenModel:ITokenModel;
[Inject]
public var licenseModel:ILicenseModel;
public override function execute():void
{
commandMap.detain(this);
var token:TokenVO = tokenModel.getToken();
var asyncToken:AsyncToken = service.getLicense(token.Id, event.id);
asyncToken.addResponder(new mx.rpc.Responder(resultHandler, faultHandler));
}
private function resultHandler(e:ResultEvent):void
{
var license:LicenseWebViewVO = e.result as LicenseWebViewVO;
if (license)
{
licenseModel.license = license;
dispatchToModules(new RunWidgetEvent(WidgetType.getWidgetId(WidgetType.LICENSE)));
}
commandMap.release(this);
}