首页 > 解决方案 > SwiftUI 中的 ForEach 和 NavigationLink 问题

问题描述

这是我遇到问题的基本代码片段:

import SwiftUI

struct ContentView: View {
    var pets = ["Dog", "Cat", "Rabbit"]
    var body: some View {
    NavigationView {
        List {
            ForEach(pets, id: \.self) {
                NavigationLink(destination: Text($0)) {
                    Text($0)
                }
            }
        }
        .navigationBarTitle("Pets")
    }
}

我得到错误:

未能产生表达诊断;请提交错误报告

我在这里的目的是熟悉 NavigationLink,并导航到一个新页面,点击该项目时只显示文本。

任何帮助,将不胜感激。

标签: swiftlistforeachswiftuiswiftui-navigationlink

解决方案


nicksarno 已经回答了,但既然你评论你不明白,我会试一试。

$0 在没有命名时引用当前闭包中的第一个参数。

ForEach(pets, id: \.self) {
    // $0 here means the first argument of the ForEach closure
    NavigationLink(destination: Text($0)) {
        // $0 here means the first argument of the NavigationLink closure 
        // which doesn't exist so it doesn't work
        Text($0)
    }
}

解决方案是将参数命名为<name> in

ForEach(pets, id: \.self) { pet in
    // now you can use pet instead of $0
    NavigationLink(destination: Text(pet)) {
        Text(pet)
    }
}

笔记; 你得到这个奇怪错误的原因是因为它找到了一个不同的 NavigationLink init,它确实有一个带参数的闭包。


推荐阅读