我想在我的 JSONStore 中设置密码。
在此 IBM Worklight Information Center 5.0.6 文章中提到usePassword(pwd)
已弃用。有没有其他方法可以为我的 JSONStore 提供密码?
我想在我的 JSONStore 中设置密码。
在此 IBM Worklight Information Center 5.0.6 文章中提到usePassword(pwd)
已弃用。有没有其他方法可以为我的 JSONStore 提供密码?
同一页面还声明您可以使用WL.JSONStore.init并在那里声明密码。如果您不声明它,它将不会使用密码。
该示例显示:
var collections = {
...
}
var options = {
username: 'carlos', //default: 'jsonstore'
password: '123' //default: no encryption
}
WL.JSONStore.init(collections, options) {
...
}
要了解如何在 Worklight 中使用 JSONStore 功能,请浏览 JSONStore 培训模块和示例应用程序。