Can't resolve all parameters for Modal: (?, ?, ?)
问题 import { Component, Inject } from '@angular/core'; import { NavController, Modal } from 'ionic-angular'; import { PopupPage } from '../../components/modal/modal.page'; @Component({ templateUrl: 'build/pages/spot/spot.html', providers: [ Modal ] }) export class SpotComponent { constructor(@Inject(Modal) private modal: Modal ) {} } 回答1: Just like @Pace commented, you can take a look at Ionic2 docs to see how to create a Modal . You don't have to include it in the providers array or in your