JayData:如何将代码从v1.3迁移到v1.5

时间:2017-01-26 22:22:33

标签: javascript polymer jaydata

我有一些在JayData 1.3中有效的代码。

由于1.3版本与聚合物的兼容性问题,我需要将JayData升级到1.5。

upgrade instructions表示您可以使用“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等价是什么?

1 个答案:

答案 0 :(得分:1)

这是更新后的片段,我刚刚将您的实体定义声明为变量,因为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 */ };