本文整理汇总了TypeScript中@orbit/data.KeyMap.pushRecord方法的典型用法代码示例。如果您正苦于以下问题:TypeScript KeyMap.pushRecord方法的具体用法?TypeScript KeyMap.pushRecord怎么用?TypeScript KeyMap.pushRecord使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@orbit/data.KeyMap
的用法示例。
在下文中一共展示了KeyMap.pushRecord方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('#recordId returns a matching orbit id given a resource id', function(assert) {
keyMap.pushRecord({ type: 'planet', id: '1', keys: { remoteId: 'a' } });
keyMap.pushRecord({ type: 'planet', id: '2', keys: { remoteId: 'b' } });
assert.equal(serializer.recordId('planet', 'a'), '1');
assert.equal(serializer.recordId('planet', 'b'), '2');
});
示例2: test
test('#serializeDocument - can serialize a resource with attributes and a null has-one relationship', function(assert) {
keyMap.pushRecord({ type: 'planet', id: 'p0', keys: { remoteId: 'p1-id' } });
keyMap.pushRecord({ type: 'moon', id: 'm1', keys: { remoteId: 'm1-id' } });
assert.deepEqual(
serializer.serializeDocument(
{
type: 'moon',
id: 'm1',
attributes: {
name: 'Io'
},
relationships: {
planet: {
data: null
}
}
}
),
{
data: {
type: 'moons',
id: 'm1-id',
attributes: {
name: 'Io'
},
relationships: {
planet: { data: null }
}
}
},
'serialized document matches'
);
});
示例3: test
test('#resourceRelationshipURL - constructs relationship URLs based upon base resourceURL', function(assert) {
assert.expect(1);
keyMap.pushRecord({
type: 'planet',
id: '1',
keys: { remoteId: 'a' },
attributes: { name: 'Jupiter' }
});
assert.equal(
urlBuilder.resourceRelationshipURL('planet', '1', 'moons'),
'/planets/a/relationships/moons',
'resourceRelationshipURL appends /relationships/[relationship] to resourceURL'
);
});