tencent cloud

文档反馈

搜索小程序

最后更新时间:2024-07-03 18:00:54
    小程序 SDK 提供线上小程序搜索的接口,可以通过此接口对小程序按关键字和分类进行搜索。
    说明:
    firstType 和 secondType 用于指定小程序搜索的一级分类和二级分类信息;
    completion 参数用于获取小程序的搜索结果。
    // 搜索小程序
    // Search mini program
    // @param name 搜索名称关键词 - search name keyword
    // @param completion 搜索结果 - search results
    - (void)searchAppletsWithName:(NSString *)name
    completion:(void (^)(NSArray<TMFAppletSearchInfo *> * _Nullable, NSError * _Nullable))completion;
    
    // 搜索小程序
    // Search mini program
    // @param name 搜索名称关键词 - search name keyword
    // @param firstType 一级分类名称 - first level classification name
    // @param secondType 二级分类名称 - second level classification name
    // @param completion 搜索结果 - search results
    - (void)searchAppletsWithName:(NSString * _Nullable )name
    firstType:(NSString * _Nullable)firstType
    secondType:(NSString * _Nullable)secondType
    completion:(void (^)(NSArray<TMFAppletSearchInfo *> * _Nullable, NSError * _Nullable))completion;

    按关键字搜索

    示例代码:
    [[TMFMiniAppSDKManager sharedInstance] searchAppletsWithName:searchString completion:^(NSArray<TMFAppletSearchInfo *> * _Nonnull result, NSError * _Nonnull aError) {
    if (error) {
    //搜索失败,或列表为空
    } else {
    //搜索成功,列表不为空
    }
    }];

    按单分类搜索

    示例代码:
    [[TMFMiniAppSDKManager sharedInstance] searchAppletsWithName:nil firstType:@"firstType" secondType:nil completion:^(NSArray<TMFAppletSearchInfo *> * _Nullable info, NSError * _Nullable error) {
    if (error) {
    //搜索失败,或列表为空
    } else {
    //搜索成功,列表不为空
    }
    }];

    双分类搜索

    说明:
    双分类搜索的结果为两个分类的交集。
    示例代码:
    [[TMFMiniAppSDKManager sharedInstance] searchAppletsWithName:nil firstType:@"firstType" secondType:@"secondType" completion:^(NSArray<TMFAppletSearchInfo *> * _Nullable info, NSError * _Nullable error) {
    if (error) {
    //搜索失败,或列表为空
    } else {
    //搜索成功,列表不为空
    }
    }];
    
    联系我们

    联系我们,为您的业务提供专属服务。

    技术支持

    如果你想寻求进一步的帮助,通过工单与我们进行联络。我们提供7x24的工单服务。

    7x24 电话支持