當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript type-r.Record類代碼示例

本文整理匯總了TypeScript中type-r.Record的典型用法代碼示例。如果您正苦於以下問題:TypeScript Record類的具體用法?TypeScript Record怎麽用?TypeScript Record使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Record類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: describe

    describe( "Integer", function () {
        var user, User = Record.extend( {
            attributes: {
                int: Integer
            }
        } )
        
        beforeEach( function () {
            user = new User();
        } );

        it( 'create new int string on construction', function () {
            expect( user.int ).toBe( 0 );
        } );
        it( 'rounding and conversion', function () {
            user.int = 3.2
            expect( typeof user.int ).toBe( 'number' );
            expect( user.int ).toBe( 3 );

            user.int = "25.7";
            expect( typeof user.int ).toBe( 'number' );
            expect( user.int ).toBe( 26 );
        } )

        it( 'can be set with null', function(){
            user.int = null;
            expect( user.int ).toBe( null );
            expect( user.isValid() ).toBe( true );
        });
    } )
開發者ID:Volicon,項目名稱:Type-R,代碼行數:30,代碼來源:ext-types.test.ts


注:本文中的type-r.Record類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。