我有一些代码在JayData 1.3中工作。
我需要将 JayData 升级到 1.5,因为 1.3 版本与聚合物存在兼容性问题。
升级说明说您可以使用" jaydata-compatibility.js
"脚本"逐步将您的应用程序从以前的版本升级到 JayData 1.5.x",但是当我按照描述添加它时,我只是收到错误"typeOrName requires a value other than undefined or null
",这实际上根本无助于我逐步完成升级。
这是 JayData 1.3 代码:
$data.Entity.extend('Cache', {
'id': { 'type': 'int', 'key': true, 'computed': true },
'url': { 'type': 'string' },
'method': { 'type': 'string', 'required': true },
'dts': { 'type': 'string', 'required': true },
'encryptMeth': { 'type': 'string' },
'data': { 'type': 'string' }
});
$data.EntityContext.extend('APIWrapperDB', {
'Cache': { 'type': $data.EntitySet, 'elementType': Cache }
});
var cacheDatabase = new APIWrapperDB('TheAPIWrapperDatabase');
cacheDatabase.onReady( function() { /* now my DB is ready */ };
此代码的 JayData 1.5 等价是多少?
这是更新的代码片段,我刚刚将您的实体定义声明为变量,因为 JayData 停止使用全局对象。
var Cache = data.Entity.extend('Cache', {
'id': { 'type': 'int', 'key': true, 'computed': true },
'url': { 'type': 'string' },
'method': { 'type': 'string', 'required': true },
'dts': { 'type': 'string', 'required': true },
'encryptMeth': { 'type': 'string' },
'data': { 'type': 'string' }
});
var APIWrapperDB = $data.EntityContext.extend('APIWrapperDB', {
'Cache': { 'type': $data.EntitySet, 'elementType': Cache }
});
var cacheDatabase = new APIWrapperDB('TheAPIWrapperDatabase');
cacheDatabase.onReady( function() { /* now my DB is ready */ };