我有两个结构(New和DailyPrediction)DailyPrediction结构作为结构的实体之一New:
type New struct {
Id string
DailyPrediction
}
type DailyPrediction struct {
Prediction string
}
Run Code Online (Sandbox Code Playgroud)
我无法读取(或)写入数据存储区中的新结构.如果有人可以帮助我这将是有帮助的.