Flutter教程

Web Server

Contents

This plugin allows you to start a local dynamic content web server for android and iOS devices.

https://github.com/bykof/cordova-plugin-webserver.git

联系我们?

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.

Contact Us Today!

Ionic Web Server插件的安装(Installation)

ionic cordova plugin add cordova-plugin-webserver npm install @ionic-native/web-server
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/web-server

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));