我想使用 Realm 存储一个数组数组,但是如果我使用混合类型,则会引发错误:
[错误:混合属性不能包含值数组。]
这是我的示例代码:
export const ContentScheme = {
name: 'content',
primaryKey: 'elementId',
properties: {
elementId: 'string?',
currentTimeInfo: 'mixed',
}
}
插入数据:-
let data = {
elementId: '60d19799c0023702d41c1110',
currentTimeInfo:[["03.41", "03.29"], ["03.30", "05.14"], ["05.18", "00.00"]]
}