UniGui学习之部署(06)
作者:互联网
unigui的ServerModule常用属性设置
unigui的ServerModule常用属性设置
1)压缩设置
compression是压缩数据用的。默认启用压缩,且压缩级别是最大的。
2)UNIGUI运行时库设置
UNIGUI需要4个运行时库,下面用代码分别指定它们的路径。
部署的时候带这4个运行时库,就不再需要在部署的目标机器上安装UNIGUI运行时库,做到绿色部署。
procedure TUniServerModule.UniGUIServerModuleBeforeInit(Sender: TObject);
begin
Self.UniRoot := 'uni';
Self.ExtRoot := 'ext';
Self.UniMobileRoot := 'unim';
self.TouchRoot := 'touch';
end;
3)加载页面等待信息设置
loadingMessage默认=loading......,可以改为我们喜欢的等待信息。
4)主网页以页面OR窗体模式显示
MainFormDisplayMode默认以窗体模式显示。
5)网站端口号设置
通过port属性设置。
6)UNIGUI WEB服务程序窗口标题设置
通过Title属性设置。
标签:06,UniGui,部署,压缩,时库,设置,属性,UNIGUI 来源: https://www.cnblogs.com/tulater/p/12254684.html