如何使用pickContact()显示所选联系人-ionic-v3

时间:2018-11-28 12:18:34

标签: ionic3 ionic-native

我要在输入中显示选定的联系人详细信息,在警报中显示联系人详细信息。所以我想在我的表单中显示该联系方式。任何想法怎么做...请帮助!

home.ts

public class WeatherViewModel
{
    public string Day { get; set; }
    public string WheatherPicturePath { get; set; }
    public string Temperature { get; set; }
    public string Description { get; set; }
}

public class BindedDataContext
{
    public ObservableCollection<WeatherViewModel> WeeklyWeather { get; set; }
    public WeatherViewModel SelectedDailyWeather { get; set; }
    //...
}

home.html

driver.findElement(By.id("avatar")).click()

1 个答案:

答案 0 :(得分:1)

尝试

contact = {
   displayName:null, 
   phoneNumbers:null, 
   birthday:null
};

selectContact(){
   this.contacts.pickContact().then((contact)=>{
      alert("contacts:-->"+ JSON.stringify(contact));
      this.contact.displayName = contact.displayName; 
      this.contact.phoneNumbers = contact.phoneNumbers[0].value; 
      contact.birthday = contact.birthday; 
   });
}

注意:属性名称检查并从响应分配。