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


TypeScript TextEncoder.encode方法代碼示例

本文整理匯總了TypeScript中text-encoding.TextEncoder.encode方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript TextEncoder.encode方法的具體用法?TypeScript TextEncoder.encode怎麽用?TypeScript TextEncoder.encode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在text-encoding.TextEncoder的用法示例。


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

示例1: test_encoder

function test_encoder() {
    var text = "plain text";
    var uint8array = new Uint8Array([]);

    // constructor
    uint8array = new TextEncoder().encode(text);
    uint8array = new TextEncoder("utf-8").encode(text);
    uint8array = new TextEncoder("windows-1252", {
        NONSTANDARD_allowLegacyEncoding: true
    }).encode(text);

    uint8array = TextEncoder().encode(text);
    uint8array = TextEncoder("utf-8").encode(text);
    uint8array = TextEncoder("windows-1252", {
        NONSTANDARD_allowLegacyEncoding: true
    }).encode(text);

    // attributes
    var encoder = new TextEncoder();
    var encoding: string = encoder.encoding;

    // methods
    encoder.encode();
    encoder.encode(text);
    encoder.encode(text, { stream: true });
}
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:26,代碼來源:text-encoding-tests.ts

示例2: fn

                        false, ['encrypt','decrypt']).then((dekKey: CryptoKey) => {

                    let dat: Uint8Array;

                    if (encrypt) {
                        // Encode the message string as a byte array
                        dat = textEncoder.encode(em.message);
                        // Generate a random IV for seeding AES-CBC
                        em.iv = new Uint8Array(16);
                        crypto.getRandomValues(em.iv);
                        // Encode the IV to be persisted later
                        em.ivB64 = b64.fromByteArray(em.iv);
                    }
                    else {
                        // Decode the IV
                        em.iv = b64.toByteArray(em.ivB64);
                        // Decode the encrypted message
                        em.messageEnc = b64.toByteArray(em.messageEncB64);
                        dat = em.messageEnc;
                    }

                    // Setup the encryptiong/decryption parameters
                    let encryptAlgor = {
                        name: 'AES-CBC',
                        iv: em.iv,
                    };

                    // Either encrypt or decrypt
                    if (encrypt) {
                        crypto.subtle.encrypt(encryptAlgor, dekKey, dat).then((crypt: ArrayBuffer) => {
                            em.messageEnc = new Uint8Array(crypt);
                            em.messageEncB64 = b64.fromByteArray(em.messageEnc);

                            if (fn != null) {
                                fn();
                            }
                        })
                    }
                    else {
                        crypto.subtle.decrypt(encryptAlgor, dekKey, dat).then((clear: ArrayBuffer) => {
                            em.message = textDecoder.decode(new Uint8Array(clear));
                            
                            if (fn != null) {
                                fn();
                            }
                        })
                    }
                });
開發者ID:ebekker,項目名稱:keypear,代碼行數:48,代碼來源:kp-crypto.ts

示例3: encode

export function encode(text : string){
  return encoder.encode(text);
}
開發者ID:strangesast,項目名稱:es-git,代碼行數:3,代碼來源:utils.ts


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