我运行命令“离子服务”登陆到黑屏。 我已经使用“ npm install”安装了所有节点模块,然后运行了“ ionic serve”
[app-scripts] [11:28:17] tslint: ...p_source_code/ionicecommerce_muzammul/src/pages/select-country/select-country.ts, line: 8
[app-scripts] All imports on this line are unused.
[app-scripts] L7: import { ConfigProvider } from '../../providers/config/config';
[app-scripts] L8: import { Http } from '@angular/http';
[app-scripts] L9: import { LoadingProvider } from '../../providers/loading/loading';
[app-scripts] [11:28:17] tslint: ...f/app_source_code/ionicecommerce_muzammul/src/pages/select-zones/select-zones.ts, line: 8
[app-scripts] [11:28:17] tslint: .../Users/Saif/app_source_code/ionicecommerce_muzammul/src/auth/auththentication.ts, line: 2
[app-scripts] [11:28:17] tslint: .../Users/Saif/app_source_code/ionicecommerce_muzammul/src/auth/auththentication.ts, line: 3
[app-scripts] [11:28:17] tslint: .../Saif/app_source_code/ionicecommerce_muzammul/src/pages/my-account/my-account.ts, line: 53
[app-scripts] All imports on this line are unused.
[app-scripts] L7: import { ConfigProvider } from '../../providers/config/config';
[app-scripts] L8: import { Http } from '@angular/http';
[app-scripts] L9: import { LoadingProvider } from '../../providers/loading/loading';
[app-scripts] All imports on this line are unused.
[app-scripts] L1: import { Injectable } from '@angular/core';
[app-scripts] L2: import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
[app-scripts] L3: import { Observable } from 'rxjs/Observable';
[app-scripts] All imports on this line are unused.
[app-scripts] L2: import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
[app-scripts] L3: import { Observable } from 'rxjs/Observable';
[app-scripts] L4: @Injectable()
[app-scripts] 'currenrtPassword' is declared but never used.
[app-scripts] L52: //this.shared.customerData.password="1234"
[app-scripts] L53: let currenrtPassword = this.myAccountData.currentPassword;
[app-scripts] L54: let newPassword = this.myAccountData.password;
[app-scripts] 'newPassword' is declared but never used.
[app-scripts] L53: let currenrtPassword = this.myAccountData.currentPassword;
[app-scripts] L54: let newPassword = this.myAccountData.password;
[app-scripts] L55: // console.log(currenrtPassword + " " + newPassword);
[app-scripts] 'require' is declared but never used.
[app-scripts] L22: declare var braintree;
[app-scripts] L23: declare var require: any
[app-scripts] L24: declare var Buffer: any
[app-scripts] 'Buffer' is declared but never used.
[app-scripts] L23: declare var require: any
[app-scripts] L24: declare var Buffer: any
[app-scripts] [11:28:17] tslint: .../Saif/app_source_code/ionicecommerce_muzammul/src/pages/my-account/my-account.ts, line: 54
[app-scripts] [11:28:17] tslint: C:/Users/Saif/app_source_code/ionicecommerce_muzammul/src/pages/order/order.ts, line: 23
[app-scripts] [11:28:17] tslint: C:/Users/Saif/app_source_code/ionicecommerce_muzammul/src/pages/order/order.ts, line: 24
[app-scripts] [11:28:17] lint finished in 6.25 s
运行离子服务后,我在控制台窗口中打开了该窗口,并在浏览器中打开了黑屏。开发服务器在localhost:8100上运行
答案 0 :(得分:0)
嘿,您的代码未使用declarations
和imports
在代码编辑器中添加名为tslint
的插件,它将显示皮棉问题
EG:->
import { LoadingProvider } from '../../providers/loading/loading';
[app-scripts] All imports on this line are unused.