0

我想在我的 JSONStore 中设置密码。

此 IBM Worklight Information Center 5.0.6 文章中提到usePassword(pwd)已弃用。有没有其他方法可以为我的 JSONStore 提供密码?

4

1 回答 1

2

同一页面还声明您可以使用WL.JSONStore.init并在那里声明密码。如果您不声明它,它将不会使用密码。

该示例显示:

var collections = {
   ...
}

var options = { 
   username: 'carlos', //default: 'jsonstore'
   password: '123' //default: no encryption
}

WL.JSONStore.init(collections, options) {
   ...
}


要了解如何在 Worklight 中使用 JSONStore 功能,请浏览 JSONStore 培训模块和示例应用程序

于 2013-07-17T06:09:35.110 回答