0
我想在我的JSONStore中設置密碼。IBM Worklight 5.0.6.1 - 如何保護JSONStore數據
在this IBM Worklight Information Center 5.0.6 article中提到,usePassword(pwd)
已被棄用。有沒有其他的替代方式來爲我的JSONStore提供密碼?
我想在我的JSONStore中設置密碼。IBM Worklight 5.0.6.1 - 如何保護JSONStore數據
在this IBM Worklight Information Center 5.0.6 article中提到,usePassword(pwd)
已被棄用。有沒有其他的替代方式來爲我的JSONStore提供密碼?
同一頁面還聲明您可以使用WL.JSONStore.init並在那裏聲明密碼。如果您不聲明它,它將不會使用密碼。
的例子顯示:
var collections = {
...
}
var options = {
username: 'carlos', //default: 'jsonstore'
password: '123' //default: no encryption
}
WL.JSONStore.init(collections, options) {
...
}
要了解如何使用JSONStore功能的工作燈,go through the JSONStore training module and sample apps。
我在哪裏需要添加this..i意味着collectionname.js(自動生成)或appname.js文件。 u能PLZ詳細解釋通過JSONStore培訓模塊和示例應用程序 – Avinash
轉到:http://www.ibm.com/developerworks/mobile/worklight/getting-started.html#advanced-client-side-development –
雅我它並完成 – Avinash