如果接口内的变量类型为 ,可能的值是Uint8Array
什么?
typeorm/src/driver/sqljs/SqljsConnectionOptions.ts https://github.com/typeorm/typeorm/blob/master/src/driver/sqljs/SqljsConnectionOptions.ts
/**
* Sql.js-specific connection options.
*/
export interface SqljsConnectionOptions extends BaseConnectionOptions {
/**
* A Uint8Array that gets imported when the connection is opened.
*/
readonly database?: Uint8Array;
}
如果已经阅读了MDN 上的文章Uint8Array
,但它并没有帮助。
编辑:如您所见,需要一个数据库名称。直觉上我会以我的数据库的名称过去,但这是一个字符串。那么Uint8Array
格式中的数据库是什么样的呢?