当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript KeyMap.pushRecord方法代码示例

本文整理汇总了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');
    });
开发者ID:orbitjs,项目名称:orbit.js,代码行数:7,代码来源:jsonapi-serializer-test.ts

示例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'
      );
    });
开发者ID:SmuliS,项目名称:orbit.js,代码行数:34,代码来源:jsonapi-serializer-test.ts

示例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'
    );
  });
开发者ID:orbitjs,项目名称:orbit.js,代码行数:15,代码来源:jsonapi-url-builder-test.ts


注:本文中的@orbit/data.KeyMap.pushRecord方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。