如何在senchatouch2中使用sqlite数据库。在模型中我使用了lik,
代理:{ 输入:“sql”, 数据库:“ContactsDB” }
获取错误..plz提供示例代码
答案 0 :(得分:0)
这正是我所拥有的。我把它放在模型的配置中。
config: {
identifier: {
type: 'uuid'
},
fields: [
{name: 'username', type: 'string'},
{name: 'password', type: 'string' },
],
proxy: {
type: "sql",
database: "FullContact",
}
},
记得包含参考:
需要:[ 'Ext.data.identifier.Uuid', 'Ext.data.proxy.Sql',],