美文网首页
iOS传参数小程序URL中的&符号,识别不了

iOS传参数小程序URL中的&符号,识别不了

作者: 晨曦景雪 | 来源:发表于2021-07-31 10:55 被阅读0次

    NSString *text=[NSString stringWithFormat:@"token=%@&order=%@",kFetchMyDefault(@"token"),self.orderDict[@"fhId"]] ;

    NSString *url = [text stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet characterSetWithCharactersInString:@":/?#[]@!$ &'()*+,;=""<>%{}|\\^~`"].invertedSet];

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"alipay://platformapi/startapp?appId=%@&page=pages/payment/payment?%@",payModel.appletUserName,url]] options:@{UIApplicationOpenURLOptionUniversalLinksOnly: @NO} completionHandler:nil];

    相关文章

      网友评论

          本文标题:iOS传参数小程序URL中的&符号,识别不了

          本文链接:https://www.haomeiwen.com/subject/aiihvltx.html