我有一些可以在JayData 1.3中工作的代码。
由于1.3版与Polymer的兼容性问题,我需要将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等价于什么?
最佳答案
这是更新的代码段,随着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 */ };
关于javascript - JayData:如何将代码从v1.3迁移到v1.5,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41884051/