我想在JSONStore中设置密码。
在this IBM Worklight Information Center 5.0.6 article中,提到不推荐使用usePassword(pwd)
。是否有其他替代方法可以为我的JSONStore提供密码?
答案 0 :(得分:2)
同一页面还说明您可以使用WL.JSONStore.init并在那里声明密码。如果您不申报,则不会使用密码。
示例显示:
var collections = {
...
}
var options = {
username: 'carlos', //default: 'jsonstore'
password: '123' //default: no encryption
}
WL.JSONStore.init(collections, options) {
...
}
要了解如何在Worklight中使用JSONStore功能,go through the JSONStore training module and sample apps。