无法访问领域获取的数据
Cannot access realm fetched data
我通过
成功获取了我的Board数据
let boards: [Board] = try! db.fetch(FetchRequest<Board>())
之后我遍历 boards 并制作
print(board)
输出:
Board {
id = 1;
name = The Name;
shortDescription = The Description;
slug = the_name;
}
但是当我想直接访问 board 名称时,例如
board.name
抛出以下错误:
fatal error: unexpectedly found nil while unwrapping an Optional value
我的错误是什么?
如果 board 不是一个对象,我怎么才能让它成为一个对象?
我正在使用:
SugarRecord
ObjectMapper
RealmSwift
ObjectMapper_Realm
通过 ObjectMapper_Realm 中缺少的文档,我没有
dynamic
我的 var 声明前面的关键字。
我通过
成功获取了我的Board数据let boards: [Board] = try! db.fetch(FetchRequest<Board>())
之后我遍历 boards 并制作
print(board)
输出:
Board {
id = 1;
name = The Name;
shortDescription = The Description;
slug = the_name;
}
但是当我想直接访问 board 名称时,例如
board.name
抛出以下错误:
fatal error: unexpectedly found nil while unwrapping an Optional value
我的错误是什么? 如果 board 不是一个对象,我怎么才能让它成为一个对象?
我正在使用:
SugarRecord
ObjectMapper
RealmSwift
ObjectMapper_Realm
通过 ObjectMapper_Realm 中缺少的文档,我没有
dynamic
我的 var 声明前面的关键字。