我正在玩 Swift UI。我创建了一个包含所有我想要的元素的表格视图(一个列表)。当在键盘上按 enter 时,TextField 更改也正在工作。很高兴建立如此快速的表格视图;)。
但现在我想跟踪文本字段上的每一个变化。每次用户输入另一个文本时,我想发送一个触发搜索的请求。
这怎么能在我的代码中完成?我还在这里阅读了此文档https://developer.apple.com/documentation/combine/receiving_and_handling_events_with_combine
我现在不知道如何在我的结构中使用它。
此处建议的解决方案TextField changes in SwiftUI does not work (anymore)
我会感谢您与我分享的每一个提示和每一个想法。我正在寻找几个小时的解决方案:(。
我的代码如下所示:
import Foundation
import SwiftUI
struct MyListView: View {
@ObservedObject var viewModel: MyViewModel
@State private var query = ""
var body: some View {
NavigationView {
List {
// how to listen for changes here?
// if I add onEditingChange here, Get the value only after the user finish search (by pressing enter on the keyboard)
TextField(String.localizedString(forKey: "search_bar_hint"), text: self.$query) {
self.fetchListing()
}
ForEach(viewModel.myArray, id: \.id) { arrayObject in
MyRow(arrayObj: arrayObject)
}
}
.navigationBarTitle(navigationBarTitle())
}
.onAppear(perform: fetchListing)
}
private func fetchListing() {
query.isEmpty ? viewModel.fetchRequest(for: nil) : viewModel.fetchRequest(for: query)
}
private func navigationBarTitle() -> String {
return query.isEmpty ? String.localizedString(forKey: "my_title") : query
}
}