5

我正在尝试使用 dwscript 创建一个模态表单。我用 ExposeRtti 注册表单,然后执行脚本,但它在 Script.Compile 期间因“堆栈溢出”而失败。有没有人有这个错误的解决方案。

我当然希望我不必像使用 remobjects PascalScript 那样手动注册所有 TForm 属性和函数,这会让我们在这个时代变得丑陋,想避免这种情况..

dwscript 可以做到这一点,还是表单只是超出了 dwscript 的范围(现阶段?)?

procedure TMainForm.Button1Click(Sender: TObject);
var AdwsProgramExecution: IdwsProgramExecution;
  ADelphiWebScript: TDelphiWebScript;
  AdwsProgram: IdwsProgram;
  AdwsUnit: TdwsUnit;
begin
  AdwsUnit := TdwsUnit.Create(nil);
  ADelphiWebScript := TDelphiWebScript.Create(nil);
  try
    AdwsUnit.UnitName := 'ShowModalTest';
    AdwsUnit.Script := ADelphiWebScript;
    AdwsUnit.ExposeRTTI(TypeInfo(TObject)); //Otherwise GetOnAlignInsertBefore error when 'compiling'
    AdwsUnit.ExposeRTTI(TypeInfo(TForm)); //Want t ocreate a form
    AdwsProgram := ADelphiWebScript.Compile('procedure TestShowModal; begin TForm.Create(nil).ShowModal; end; end.'); //Stack overflow
    if AdwsProgram.Msgs.Count = 0 then 
    begin
      AdwsProgramExecution := AdwsProgram.Execute;
      MEResult.Lines.Text := AdwsProgramExecution.Result.ToString;
    end
    else 
      MEResult.Lines.Text := AdwsProgram.Msgs.AsInfo;
  finally
    ADelphiWebScript.Free;
    AdwsUnit.Free;
  end;
end;
4

1 回答 1

0

显然 dwscript 不能通过扩展 RTTI 正确注册任何东西,除非它是简单的类。这不是我对脚本引擎的想法,所以(现在)dwscript 完全属于图表,除非它可以 rtti 注册复杂的结构。这是非常有前途的,但在这个包完成和可用之前还有很长的路要走。

现在回到 pascalscript、paxcompiler 或 tmsscript

于 2012-05-20T21:54:39.547 回答