Typescript:尝试扩展String类...在我的方法中无法获取对字符串值的引用

问题描述

class MString extends String {
    
    constructor(value: string) {
        super(value)
        console.log(typeof this)//string 
    }

    /**
     * replaces substrings in string,based on the keys and values of the 'translation' object passed in.
     * @param str
     * @param translations
     */
    replaceAll(translations: { [key: string]: string }) {
        console.log(this)//MString {}
        let replacedStr: String = this;
        for (const key of Object.keys(translations)) {
            while (replacedStr.includes(key)) {
                replacedStr = replacedStr.replace(key,translations[key]);
            }
        }
        return replacedStr;
    }
}

在构造函数中,它将'this'的类型记录为字符串。但是在replaceAll()中,它记录为MString {}。

我也收到如下错误

            while (replacedStr.includes(key)) {
                               ^
TypeError: String.prototype.toString requires that 'this' be a String
    at MString.toString (<anonymous>)
    at MString.includes (<anonymous>)
    at MString.replaceAll (/mnt/d/Dev/bullshit/src/index.ts:24:32)
    at Object.<anonymous> (/mnt/d/Dev/bullshit/src/index.ts:34:17)
    at Module._compile (internal/modules/cjs/loader.js:1138:30)
    at Module.m._compile (/mnt/d/Dev/bullshit/node_modules/ts-node/src/index.ts:1043:23)
    at Module._extensions..js (internal/modules/cjs/loader.js:1158:10)
    at Object.require.extensions.<computed> [as .ts] (/mnt/d/Dev/bullshit/node_modules/ts-node/src/index.ts:1046:12)
    at Module.load (internal/modules/cjs/loader.js:986:32)
    at Function.Module._load (internal/modules/cjs/loader.js:879:14)

相同的实现在javascript中也有效。 我尝试将其强制转换为String。徒劳无功。 我尝试调用super.valueOf()。徒劳无功。 我尝试将其绑定到replaceAll()方法。徒劳无功。 我尝试创建一个属性来保存对象已初始化的字符串。但是显然不允许我这样做。

一旦进入replaceAll()方法,为什么似乎丢失对字符串实例的引用? 我有办法访问字符串实例的值吗?

[已解决] 多亏了SomePerformance。我意识到问题是我正在编译到es5 javascript。我应该编译为es6。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)