因此,我使用此here
中的示例刚刚遇到了SQLite的此类问题使用示例,我会遇到这种错误
类型“ {}”的参数不能分配给类型“ any []”的参数。类型“ {}”中缺少属性“长度”。
您可能对我使用了什么代码感到困惑,所以在这里我将下面的代码放入了我的提供商页面,同时我也在应用程序模块提供商中插入了本地sqlite。
createGovernmentServices(){
this.sqlite.create({
name: 'data.db',
location: 'default'
})
.then((db: SQLiteObject) => {
db.executeSql('create table danceMoves(name VARCHAR(32))', {})
.then(() => console.log('Executed SQL'))
.catch(e => console.log(e));
})
.catch(e => console.log(e));
}
我不知道会怎样?