2017-08-16 3 views

Antwort

1

Sie vermissen den HTTP-Import

import { HttpModule } from '@angular/http'; 

@NgModule({ 
    imports: [ BrowserModule, HttpModule,ShareButtonsModule.forRoot()],// missing http import module 
    providers: [], 
    declarations: [ AppComponent ], 
    bootstrap: [ AppComponent ] 
}) 
.... 

Demo für den Share-Taste link Klick auf Kontaktkarte

In dem offiziellen Wiki-Link für die Share-Taste des Httpmodule erforderlich Bitte dies überprüfen link

+0

grund für dv? –

+0

ohhhh, ich vermisse HttpModule, danke dir – Manu