當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript FirebaseListObservable.add方法代碼示例

本文整理匯總了TypeScript中angularfire2.FirebaseListObservable.add方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript FirebaseListObservable.add方法的具體用法?TypeScript FirebaseListObservable.add怎麽用?TypeScript FirebaseListObservable.add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在angularfire2.FirebaseListObservable的用法示例。


在下文中一共展示了FirebaseListObservable.add方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

 constructor(public af:AngularFire) {
   var ref = new Firebase(rootFirebase);
   ref.remove();
   this.questions = af.list('/questions');
   this.questions.add({question: 'why?'});
   this.questions.add({question: 'how?'});
 }
開發者ID:2947721120,項目名稱:angularfire2,代碼行數:7,代碼來源:firebase_list_example.ts

示例2:

          handler: () => {

// send message implementation
console.log('Your Contact no. '+contactNo.value.toString()+' is saved!');
console.log('Your Message '+newMsg.value.toString()+' is saved!');
newMsg = newMsg.value.toString();
contactNo = contactNo.value.toString();
//console.log(newMsg);
//console.log(contactNo);
//console.log('this.sms.key.value');
//console.log(this.contacts.key.value);
/*
this.sms.once('value',function(snapshot){
var key = childSnapshot.key();
var childData = childSnapshot.val();
});});
*/
this.sms.add(newMsg);
this.contacts.add(contactNo);
SMS.send(contactNo,newMsg);
var success = Alert.create({
      title: 'Message Sent Successfully'
    });
  this.nav.present(success);

		




























}}]});   this.nav.present(confirm);}}
開發者ID:RidaRidss,項目名稱:Instant-Messaging-App,代碼行數:55,代碼來源:page2.ts

示例3: addTask

    addTask(task : HTMLInputElement): void {
    
        console.log(`Adding article title: ${task.value} `);
        
        this.tasks.add(task.value);

    }
開發者ID:UsairimIsani,項目名稱:angular2-firebase-sample,代碼行數:7,代碼來源:app.ts

示例4:

 handler : data => {
     // var obj = {
     //     task : JSON.stringify(data),
     //     id: Date.now()
     // }
    
   this.arr.add(data); 
 }
開發者ID:blackhawk389,項目名稱:firebase-ionic,代碼行數:8,代碼來源:home.ts

示例5:

buttons: [{text: 'Back',handler: () => {console.log('Go Back');}},{text: 'Agree',handler: () => {
 console.log('Your Account Created Successfully:'+ user.value);
 this.users.add(user.value);
//var User : users = new users(user.value,password.value);
//users.push(User);  
let success = Alert.create({title: 'Your Account Created Successfully',subTitle: 'Enjoy Socias!',
buttons: [{ text: 'Thank You!', handler: () => { this.nav.push(socias);}}]
});
this.nav.present(success);    
}}]});
開發者ID:RidaRidss,項目名稱:Socias,代碼行數:10,代碼來源:page2.ts

示例6: addMessage

 addMessage(el){
  
   let newMessage = {text: el.value};
   this.messages.add(newMessage);
   el.value = '';
 }
開發者ID:jensWorkGit,項目名稱:ngnl_demos,代碼行數:6,代碼來源:firebasechat.ts

示例7: addQuestion

 addQuestion(newQuestion:any){
   this.questions.add(newQuestion);
 }
開發者ID:itproto,項目名稱:answers-app,代碼行數:3,代碼來源:QuestionService.ts

示例8: join

    join(task : HTMLInputElement): void {

        console.log(`Adding user to users in chat room: ${task.value} `);
        this.users.add(task.value);
    }
開發者ID:akserg,項目名稱:ionic2-firebase-webrtc,代碼行數:5,代碼來源:media.ts


注:本文中的angularfire2.FirebaseListObservable.add方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。