因招聘要求熟练运用Office,被微软打上门查盗版(微软怎么知道在用盗版office)
556
2022-05-30
HWH5.selectContacts
HWH5.openUserProfile
使用H5微应用JSAPI需要引用资源,查看详细文档
HWH5.selectContacts
调起选择联系人界面。可传参,支持单选多选、选择手机通讯录、默认选中联系人、限制人数等
请求参数
users参数说明
返回结果
请求示例
ES6版本
const _users = [ { account: 'test1@welink', type: 1, status: 1, name: 'test1', calleeNumber: '', personType: '' }, { account: 'test2@welink', type: 1, status: 1, name: 'tes2', calleeNumber: '', personType: '' } ]; HWH5.selectContacts({ needCallback: true, isSingleSelection: false, minimum: 2, maximum: 5, mode: 1, dataSourceType: 4, searchKeyword: '', title: 'h5demo title', users: JSON.stringify(_users), supportPortals: 1, fixedFlag: 2 }).then(data => { console.log(data); }).catch(error => { console.log(error); });
ES5版本
var _users = [ { account: 'test1@welink', type: 1, status: 1, name: 'test1', calleeNumber: '', personType: '' }, { account: 'test2@welink', type: 1, status: 1, name: 'tes2', calleeNumber: '', personType: '' } ]; HWH5.selectContacts({ needCallback: true, isSingleSelection: false, minimum: 2, maximum: 5, mode: 1, dataSourceType: 4, searchKeyword: '', title: 'h5demo title', users: JSON.stringify(_users), supportPortals: 1, fixedFlag: 2 }).then(function (data) { console.log(data); }).catch(function (error) { console.log(error); });
HWH5.openUserProfile
打开联系人详情页面
请求参数
注意:userId、corpUserId、userEmail,只要给一个即可,但必须要给一个。
返回结果
调起通讯录详情页面。
请求示例
ES6版本
HWH5.openUserProfile({ userId: 'xx@xx' }).catch((error) => { console.log('查看通讯录详细信息异常', error); });
ES5版本
HWH5.openUserProfile({ userId: 'xx@xx' }).catch(function (error) { console.log('查看通讯录详细信息异常', error); });
WeLink
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。