我需要使用预加载的消息打开whatsup,如下所示:
Linking.openURL('whatsapp://send?text==%C2%A1Hola!%20Quiero%20realizar%20una%20consulta.&phone=5493416931539').catch(err => console.error('An error occurred', err));
我收到错误消息:"{"framestopop:1,code:EUNSPECIFIED"}"
我尝试过使用.catch(() => null);
,但两者均无效。
答案 0 :(得分:1)
您需要使用以下代码
import { Linking } from ‘react-native’;
shareToWhatsAppWithContact = (text, phoneNumber) => {
Linking.openURL(`whatsapp://send?text=${text}&phone=${phoneNumber}`);
}