如果接口内的变量被输入为Uint8Array
,那么可能的值是什么?
typeorm / SRC /驱动器/ 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's article on Uint8Array
,但没有帮助。
编辑:如您所见,需要一个数据库名称。直觉上我会以我的数据库的名义过去,但这是一个字符串。那么Uint8Array
格式的数据库怎么样?