在新版本的BeetleX.FastHttpApi
加入了对netstandard2.0
支持,若是程序基于.NetFramework4.6.1来构建WinForm或WPF桌面程序的状况下能够直接把BeetleX的HTTP嵌入到程序中,轻易就能实现一个本地化的HTTP服务并提供静态资源和WebAPI的调用处理;如下简单地介绍在WinForm/WPF引入BeetleX.FastHttpApi
的HTTP服务。javascript
组件在1.4.5.8
版本后加入了对netstandard2.0
的支持,只须要在Nuget上添加这个或更高版的BeetleX.FastHttpApi
便可css
只须要几行代码便可在程序中添加HTTP服务html
private BeetleX.FastHttpApi.HttpApiServer mHttpApiServer; private void Form1_Load(object sender, EventArgs e) { SetIE(); mHttpApiServer = new BeetleX.FastHttpApi.HttpApiServer(); mHttpApiServer.Register(typeof(Form1).Assembly); mHttpApiServer.Open(); }
构建一个HttpApiServer对象,而后把当前程序集注册到服务中便可完成。vue
"HttpConfig": { "Host": "", "Port": 12345, "SSL": false, "CertificateFile": "", "CertificatePassword": "", "MaxBodyLength": 20097152, "OutputStackTrace": true, "StaticResurceType": "xml;svg;woff;woff2;jpg;jpeg;gif;png;js;html;htm;css;txt;ico;zip;rar", "DefaultPage": "index.html;index.htm", "NotLoadFolder": "\\Files;\\Images;\\Data", "NoGzipFiles": "xml;svg;woff;woff2;jpg;jpeg;gif;png;js;html;htm;css;txt;ico;zip;rar", "CacheFiles": "", "BufferSize": 8192, "WebSocketMaxRPS": 2000, "WriteLog": true, "LogToConsole": true, "LogLevel": "Warring" }
默认配置是在端口12345上开启http
和websocket
服务;运行程序后能够经过浏览器访问http://localhost:12345
便可访问服务。不过更多状况是程序内嵌一个webBrowser打开,这样便可彻底使用html+css+js来构建一个本地UI程序了。java
组件经过目录名来约束资源存储位置,全部资源必须存放在程序的views目录下git
静态文件属性设置成嵌入程序或编译复制的方式进行发布,程序能够在webBrowser设置服务地址便可打开网页,效果以下:github
经过这种集成方式WinForm/WPF就彻底能够用html+css+vue等这些功能进行windows程序UI开发。web
若是使用内嵌的http+html+css+vue作桌面应用开发,那必然也须要有数据交互的接口;接下来简单地定义一个接口让javascript访问ajax
[Controller] public class WebAction { public object GetStarted(string email) { return new TextResult($"{email} {DateTime.Now}"); } }
只须要在项目中简单地添加一个控制器便可,以上GetStarted
访问的访问路径是/GetStarted
;经过ajax在页面调用的脚本windows
function GetStarted(email) { $.get('/GetStarted?email=' + email, function (result) { alert(result); }); }
以上是WinForm/WPF内嵌BeetleX构建的一个桌面应用,是否是感受很简单?若是你对Beetlex感兴趣能够关注 https://github.com/IKende/FastHttpApi
https://github.com/IKende/FastHttpApi/tree/master/samples/WinWebSample