我正在与angularjs以及Node.js一起使用电容器js构建本机应用程序,并且正在尝试在应用程序本身中构建Web服务器。我在本地服务器上测试了该应用程序,但它需要单独运行一个,类似于:
import { Component, OnInit } from '@angular/core';
import { Plugins } from '@capacitor/core';
import * as $ from 'jquery';
import * as http from 'http';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
title = 'app';
ngOnInit() {
$('#HelpBtn').click(function() {
$('#Info').fadeToggle()
})
}
btnClick() {
http.createServer(function (req, res) {
res.write('Hello World!'); //write a response to the client
res.end(); //end the response
}).listen(8080); //the server object listens on port 8080
}
}
它与capacitor.js一起运行,那么在这两个框架中是否有任何内置组件或模块可以帮助我?最好是可以呈现.html文件的文件? this
之类的东西