问题描述:
项目跑起来之后主页空白,打开开发者模式看到报错:
Failed to load resource: the server responded with a status of 404
http://localhost:8101/build/main.css(Not Found)
在www文件夹下查看,发现无法正确编译,打开错误日志发现问题:
Typescript Error
Module '"E:/ionic2/mit/node_modules/@ionic-native/core/index"' has no exported member 'IonicNativePlugin'.
E:/ionic2/mit/node_modules/@ionic-native/toast/index.d.ts
import{IonicNativePlugin} from'@ionic-native/core';
import{ Observable } from'rxjs/Observable';
问题在于core文件不全,缺少IonicNativePlugin模块
解决方案:
卸载并升级ionic-native/core,可以解决此问题:
npm uninstall --save @ionic-native/core
npm install --save @ionic-native/core@latest