This version of the documentation is outdated!
Click here for the latest released version.
contactSuccess
提供的成功回呼函數 Contact
陣列產生的 [contacts.find](../contacts.find.html)
操作。
function(contacts) {
// Do something
}
參數
- 連絡人: 連絡人陣列產生的查找操作。(連絡人)
示例
function contactSuccess(contacts) {
for (var i=0; i<contacts.length; i++) {
console.log("Display Name = " + contacts[i].displayName);
}
}