我正在尝试将ionic 4应用程序(angular 7)与azure的iot hub连接。我正在尝试将来自应用程序的msg发送到iot hub。在我的离子项目中下载了“ azure-iothub”,并尝试导入“客户端”以建立连接,但同时却出现了错误。
尝试将这些特定模块的浏览器设置为false,它会生成警告,但不会在本地主机上加载应用。 还尝试了http发布请求,但由于“不允许本地主机访问”,还会出现CORS错误。
import { Platform } from '@ionic/angular';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import {Client} from 'azure-iothub';
@Component({
selector: 'app-root',
templateUrl: 'app.component.html'
})
export class AppComponent {
constructor(
private platform: Platform,
private splashScreen: SplashScreen,
private statusBar: StatusBar
) {
this.initializeApp();
}
initializeApp() {
this.platform.ready().then(() => {
this.statusBar.styleDefault();
this.splashScreen.hide();
});
var connectionString = '**********';
var client = Client.fromConnectionString(connectionString);
client.open(function (err) {
if (err) {
console.error('Could not connect: ' + err.message);
} else {
console.log('Service client connected');
}});
}
}
出现以下错误- error while building
答案 0 :(得分:0)
不支持在浏览器中使用Azure IoT节点SDK。