android - 在 native react 中打开联系人应用程序
<p><p>我正在制作一个 React Native 应用程序,在一个屏幕中有一个表单,用户必须在其中填写用户必须填写他的手机号码的表单,所以我正在制作一个按钮,该按钮将打开联系人应用程序用户电话,用户可以从该列表中选择联系人号码,该号码将填写在该字段中。 </p>
<p>我找到了这个链接 <a href="https://github.com/rt2zz/react-native-contacts" rel="noreferrer noopener nofollow">react-native-contacts</a>但我认为它是
获取所有联系人列表并使用 ListView 在 reactnative 应用程序中显示它,但我不想要这种类型的功能。我只想打开联系人应用程序,然后如果用户选择任何应填写在手机号码字段中的特定联系人。</p>
<p>代码实现</p>
<pre><code>import ContactsWrapper from 'react-native-contacts-wrapper';
import { Separator, SeparatorDate } from '../../components/List';
export default class AddNewClub extends Component {
constructor(props) {
super(props);
this.onMobileIconPressed = this.onMobileIconPressed.bind(this);
this.state = {
registerButtonClicked: false,
};
}
registerButtonClick = () => {
this.setState({
registerButtonClicked: true,
});
};
onMobileIconPressed() {
ContactsWrapper.getContact()
.then((contact) => {
// Replace this code
console.log(contact);
})
.catch((error) => {
console.log("ERROR CODE: ", error.code);
console.log("ERROR MESSAGE: ", error.message);
});
}
</code></pre>
<p>这是我编写的代码,当我在设备上测试此屏幕时,它会给出错误“无法解析模块 react-native-contacts-wrapper </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以使用 <a href="https://github.com/LynxITDigital/react-native-contacts-wrapper" rel="noreferrer noopener nofollow">react-native-contacts-wrapper</a> </p></p>
<p style="font-size: 20px;">关于android - 在 nativereact 中打开联系人应用程序,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/48254825/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/48254825/
</a>
</p>
页:
[1]