問題1.部署到環(huán)境的時(shí)候報(bào)錯(cuò) Error loading MIDAS.DLL
解決方式:把本機(jī)delphi安裝路徑下的MIDAS.DLL復(fù)制到 程序的相同目錄下
問題2徊哑,加載頁(yè)面失敗? 界面就卡在loading上了
解決方式:?在UniGUIServerModuleBeforeInit添加 Self.UniMobileRoot :='unim-1.90.0.1551
exp:
procedure TUniServerModule.UniGUIServerModuleBeforeInit(Sender: TObject);
begin
Self.ExtRoot:='ext-7.0.0'; //C:\Program Files (x86)\FMSoft\Framework\uniGUI\"Name Folder"
Self.UniRoot:='uni-1.90.0.1551'; //C:\Program Files (x86)\FMSoft\Framework\uniGUI\"Name Folder"
?Self.UniMobileRoot :='unim-1.90.0.1551'; //C:\Program Files (x86)\FMSoft\Framework\uniGUI\"Name Folder"
end;