本文整理匯總了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'
);
});