ดูการค้นหาที่แนะนำ
หากต้องการดูคำแนะนำการค้นหา ให้เรียกใช้เมธอด getSearchSuggestions
ใน
ContextualSearchRuntime
เมธอดนี้ใช้ GetSearchSuggestionsOptions รายการเดียว ซึ่งคุณสามารถระบุข้อความที่จะใช้เพื่อรับการแนะนำการค้นหา
ออบเจ็กต์ SearchSuggestions
ที่แสดงผลไม่มีพร็อพเพอร์ตี้ที่เข้าถึงได้ ไฟล์นี้มีข้อมูลที่จำเป็นทั้งหมดในการแสดงผลคำแนะนำการค้นหา แต่จะไม่แสดงผล
Swift ใช้รูปแบบการทำงานพร้อมกันของ Swift ส่วน Objective-C ใช้ฟังก์ชัน Callback
Swift
getSearchSuggestions(withOptions:)
Task {
let suggestions = try await searchRuntime.getSearchSuggestions(
withOptions: GetSearchSuggestionsOptions(withTextContext:['Sample Query', 'Another query string']))
}
Objective-C
getSearchSuggestionsWithOptions
[searchRuntime
getSearchSuggestionsWithOptions:
[[GetSearchSuggestionsOptions alloc] initWithTextContext: @[@'Sample Query', @'Another query string' ]]
completionHandler:^(SearchSuggestions *_Nullable suggestions,
NSError *_Nullable error) {
// error will be not null if there is an error.
// On success, suggestions will be non null.
}];
รับการค้นหาที่แนะนำตามตำแหน่ง
คําขอ getSearchSuggestions
ยังรองรับการแนะนําการค้นหาตามตําแหน่งด้วย สร้างออบเจ็กต์ GetSearchSuggestionsOptions
ด้วย LocationSuggestionsContext
ทำตามขั้นตอนต่อไปนี้เพื่อสร้างชั้นเรียน LocationSuggestionsContext
- (ต้องระบุ) ตั้งค่า
latitude
,longitude
และradiusMeters
ให้ตรงกับพื้นที่ที่ต้องการ - (ไม่บังคับ) ตั้งค่า
startTime
ให้ตรงกับเวลาที่ขอซึ่งควรใช้คำแนะนำการค้นหา - (ไม่บังคับ) ตั้งค่ารายการ
geoTypes
ด้วยประเภทภูมิศาสตร์ที่ขอ ระบบจะใช้ประเภทที่ระบุเพื่อปรับการจัดอันดับและการกรองผลลัพธ์ที่บริการแสดง ค่าที่รองรับจะบันทึกไว้ใน LocationSuggestionsContext
Swift
getSearchSuggestions(withOptions:)
Task {
let locationContext: LocationSuggestionsContext = {
let context = LocationSuggestionsContext()
context.latitude = 40.748595
context.longitude = -73.992365
context.radiusMeters = 2500
context.startTime = try?
Date.ISO8601FormatStyle.iso8601.parse("2024-03-14T19:20:30.000+02:00")
context.geoTypes = ["restaurant", "cafe"]
return context
}()
let suggestions = try await searchRuntime.getSearchSuggestions(
withOptions: GetSearchSuggestionsOptions(locationContext: [
locationContext
]))
}
Objective-C
getSearchSuggestionsWithOptions
LocationSuggestionsContext *locationContext;
locationContext = [[LocationSuggestionsContext alloc] init];
locationContext.latitude = 40.748595;
locationContext.longitude = -73.992365;
locationContext.radiusMeters = @2500;
[searchRuntime
getSearchSuggestionsWithOptions:
[[GetSearchSuggestionsOptions alloc] initWithLocationContext: locationContext]
completionHandler:^(SearchSuggestions *_Nullable suggestions,
NSError *_Nullable error) {
// error will be not null if there is an error.
// On success, suggestions will be non null.
}];
ดิสเพลย์
หากต้องการแสดงชิปคำแนะนำการค้นหา ให้ใช้วิธีการต่อไปนี้ (สไตล์จะแตกต่างกันไปหากคุณใช้ UIKit กับ SwiftUI)
Swift UIKit
แสดงชิปการแนะนำการค้นหาโดยใช้ SearchSuggestionsViewController
// Create the SearchSuggestionsViewController with specified display options.
var searchSuggestionsController = SearchSuggestionsViewController(options: viewOptions)
...
// Add the view controller to the existing view hierarchy
searchSuggestionsController.addToViewContoller(self)
view.addSubview(searchSuggestionsController.view)
...
// Assign a specific set of search suggestions to this view controller.
searchSuggestionsController.searchSuggestions = suggestions
Objective-C
แสดงชิปการแนะนำการค้นหาโดยใช้ SearchSuggestionsViewController
// Create the SearchSuggestionsController with specified display options.
SearchSuggestionsViewController *_searchSuggestionsController =
[[SearchSuggestionsViewController alloc] initWithOptions:_customizationOptions];
...
// Add the view controller to the existing view hierarchy
[_searchSuggestionsController addToViewController:self];
[self.view addSubview:_searchSuggestionsController.view];
...
// Assign a specific set of search suggestions to this view controller.
_searchSuggestionsController.searchSuggestions = suggestions
SwiftUI
แสดงการแนะนำการค้นหาได้ด้วย SearchSuggestionsView
SearchSuggestionsView(suggestions: suggestions, options: options)