Web Server
This plugin allows you to start a local dynamic content web server for android and iOS devices.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic Web Server插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic Web Server插件支持的平台(Supported Platforms)
- Android
- iOS
Ionic Web Server插件的用法(Usage)
import { WebServer } from '@ionic-native/web-server/ngx';
constructor(private webServer: WebServer) { }
...
this.webServer.onRequest().subscribe(data => {
console.log(data);
const res: Response = {
status: 200,
body: '',
headers: {
'Content-Type': 'text/html'
}
};
this.webServer.sendResponse(data.requestId, res)
.catch((error: any) => console.error(error));
});
this.webServer.start(80)
.catch((error: any) => console.error(error));