类似于苹果xcode开发中 ,想问问小程序里有没有例如,直接跳到美团的小程序(或原生app)里并搜索对应传过去字符串参数
这是ios中跳转到美团app并搜索的url====> imeituan://www.meituan.com/search?q=" + "(0)" + ""
+ (void)openURL:(NSString *)url {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url] options:@{} completionHandler: ^(BOOL success) {
if (success) {
NSLog(@"Opened url");
}
else{
NSLog(@"Open failed url");
}
}];
}
跳转时带参数,然后美团那边根据这个参数在小程序内实现搜索即可
https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.navigateToMiniProgram.html
我好像找到了,我试下这个