zoukankan      html  css  js  c++  java
  • cordova 日曆 聯系人 插件使用

    日曆插件 聯係人插件

    我用聯係人插件,

     1 function onSuccess(contact) {
     2     alert("Save Success");
     3 };
     4 
     5 function onError(contactError) {
     6     alert("Error = " + contactError.code);
     7 };
     8 
     9 // create a new contact object
    10 var contact = navigator.contacts.create();
    11 contact.displayName = "Plumber";
    12 contact.nickname = "Plumber";            // specify both to support all devices
    13 
    14 // populate some fields
    15 var name = new ContactName();
    16 name.givenName = "Jane";
    17 name.familyName = "Doe";
    18 contact.name = name;
    19 
    20 // save to device
    21 contact.save(onSuccess,onError);

    我發現沒有反應; 1 document.addEventListener('deviceready', yourfunction, false); 我把添加到聯系人的函數放到yourfunction 中就可以了

     1 var startDate = new Date(2014,2,24,0,0,0,0,0);
     2   var endDate = new Date(2014,2,25,0,0,0,0,0);
     3   var title = "My nice events";
     4   var location = "Home";
     5   var notes = "Some notes about this event.";
     6   var success = function(message) { alert("Success: " + JSON.stringify(message)); };
     7   var error = function(message) { alert("Error: " + message); };
     8   // if you want to create a calendar with a specific color, pass in a JS object like this:
     9   var createCalOptions = window.plugins.calendar.getCreateCalendarOptions();
    10   createCalOptions.calendarName = "My Cal Name";
    11   createCalOptions.calendarColor = "#FF0000"; // an optional hex color (with the # char), default is null, so the OS picks a color
    12   window.plugins.calendar.createCalendar(createCalOptions,success,error);
    13   window.plugins.calendar.createEventInNamedCalendar(title,location,notes,startDate,endDate,createCalOptions.calendarName,success,error);

    需要二個函數

    createCalendar,
    createEventInNamedCalendar

    才能打到我要的效果....囧

  • 相关阅读:
    0316复利计算
    操作系统实验0
    0302-软件工程第一次作业
    1203有穷自动机
    11.11对同学们的作业一些评论
    1029 文法分析
    编译原理第一次上机作业感想
    词法分析编译感想
    0909 初识编译原理
    0909编译原理
  • 原文地址:https://www.cnblogs.com/xieyier/p/4022428.html
Copyright © 2011-2022 走看看