如何AngularJS通过ajax请求发送get请求,并在成功时删除标记

时间:2017-05-21 00:41:32

标签: javascript angularjs ajax

让我说在我看来我有这个:

import { Push, PushObject, PushOptions, AndroidPushOptions, IOSPushOptions } from '@ionic-native/push';

pushsetup() {
    const options: PushOptions  = {

     android: {
         senderID: '**********',
         icon: "notification",
         iconColor: "blue",
         sound: true,
         vibrate: true,
         forceShow: true
     },

     ios: {
         alert: true,
         badge: true,
         sound: true
     },

  };

  const pushObject: PushObject = this.push.init(options);

  pushObject.on('notification').subscribe((notification: any) => {
    if (notification.additionalData.foreground) {
      let youralert = this.alertCtrl.create({
        title: 'New Push notification',
        message: notification.message
      });
      youralert.present();
    }
  });

  pushObject.on('registration').subscribe((registration: any) => {
     //do whatever you want with the registration ID
  });

  pushObject.on('error').subscribe(error => alert('Error with Push plugin' + error));
  }

onclick我想调用一个ajax函数并传递一个参数,一旦成功,删除该行。

我知道如何用一些冗长的jquery来做这件事,但我正在学习Angular。

0 个答案:

没有答案