gpt4 book ai didi

ios - 防止 NavigationLink 处理状态变量

转载 作者:行者123 更新时间:2023-11-29 05:23:05 26 4
gpt4 key购买 nike

我不喜欢我的标题,但这是我能想到的最好的标题。基本上,我有两个 View :SearchInput 和 SearchResultList。用户使用 SearchInput 输入搜索词,点击“Go”,然后使用 SearchResultList 查看搜索结果。代码是:

struct SearchInput: View {
@State private var searchTerm: String = ""

var searchResult: [RTDocument] {
return RuntimeDataModel.shared.fetchRTDocuments(matching: self.searchTerm)
}

var body: some View {
NavigationView {
VStack {
TextField("Enter search term...", text: self.$searchTerm)

NavigationLink(destination: SearchResultList(
rtDocuments: self.searchResult
)) { Text("Go") } //NavigationLink
} //VStack
} //NavigationView
} //body
} //SearchInput

我遇到的问题是,每次用户在 TextField 中输入字符时,绑定(bind)状态变量 searchTerm 都会更新,这会导致 NavigationLink 重新评估其目的地 - 这会导致在计算的 searchResult 变量中获取核心数据.

我希望只在用户点击“Go”时进行一次提取。有办法实现吗?

最佳答案

这是预期的行为,因此一般来说您应该重新设计您的 SearchResultList,但这可以作为解决方法有所帮助:

声明您的输入的状态:

@State var shouldNavigate = false

然后将按钮与导航链接分开。

Group {         
Button("Go") {
self.shouldNavigate = true
}
NavigationLink(destination: Text("SearchResultList"),
isActive: $shouldNavigate) {
EmptyView()
}
}

关于ios - 防止 NavigationLink 处理状态变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58463779/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com