我是Angular 6和TypeScript的新手。有人可以向我展示在Angular 6中使用node.js第三方模块的正确方法吗?
例如,我想创建具有消费和向SOAP wsdl方法发出请求的功能的组件。
通过使用npm install
添加到package.json来安装它。
尝试像这样使用node-soap npm模块:
import { Injectable } from '@angular/core';
import * as soap from 'node-soap';
@Injectable({
providedIn: 'root'
})
export class MySoapService {
constructor() { }
getOrderInfo() {
const url = 'http://my-example-api.com/WCF/ClientService.svc?singleWsdl';
let args = {
login: 'login',
password: 'password',
orderNumber: 'F976638'
};
soap.createClient(url, function(err, client) {
client.GetOrderInfo(args, function(err, result) {
console.log(result);
});
});
};
}
然后将该服务注入组件并进行渲染,只是为了测试该服务...
但是在ng serve
期间出现了一些错误:
ERROR in ./node_modules/node-soap/client.js
Module not found: Error: Can't resolve 'http' in '/home/cadistortion/WebstormProjects/my-ng-app/node_modules/node-soap'
谢谢!
答案 0 :(得分:-1)
很简单,在您的URL中有您的API节点。 您需要更多express.js(或其他)才能上班。 BD-例如MongoDB或其他或Json。
查看此视频和其他同一用户https://www.youtube.com/watch?v=M-G48Gf2Xl0 完成了如何使用MEAN Stack创建博客