xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub! TS type different String / string TypeScript: String vs string

String / string



https://*.com/questions/14727044/typescript-difference-between-string-and-string

xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!
TS type different String / string
TypeScript: String vs string

xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!
TS type different String / string
TypeScript: String vs string

Object vs object

xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!
TS type different String / string
TypeScript: String vs string


class SVGStorageUtils {
  // Object
  store: Object;
  // object
  constructor(store: object) {
    this.store = store;
  }
  // string primitive
  setData(key: string = ``, data: object) {
    sessionStorage.setItem(key, JSON.stringify(data));
  }
  // String Object
  getData(key: String = ``) {
    const obj = JSON.parse(sessionStorage.getItem(key));
  }
  clear(key: any) {
    delete this.store[key];
  }
  clearAll() {
    this.store = {};
  }
  init() {
    this.store = {};
  }
}





TypeScript: String vs string

Argument of type 'String' is not assignable to parameter of type 'string'.

'string' is a primitive, but 'String' is a wrapper object.

Prefer using 'string' when possible.

demo

String Object

// error
class SVGStorageUtils {
  store: object;
  constructor(store: object) {
    this.store = store;
  }
  setData(key: String = ``, data: object) {
    sessionStorage.setItem(key, JSON.stringify(data));
  }
  getData(key: String = ``) {
    const obj = JSON.parse(sessionStorage.getItem(key));
  }
}

string primitive

// ok
class SVGStorageUtils {
  store: object;
  constructor(store: object) {
    this.store = store;
  }
  setData(key: string = ``, data: object) {
    sessionStorage.setItem(key, JSON.stringify(data));
  }
  getData(key: string = ``) {
    const obj = JSON.parse(sessionStorage.getItem(key));
  }
}

xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!
TS type different String / string
TypeScript: String vs string



©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!