我怎样才能用氚去除一段 javascript 的文字?

How can I remove a piece of javascript text with tritium?

我有这段氚文本,我要用它来删除一段 javascript 代码。

  # to remove an inline js code based on text search
      $("//script[contains(text(),'textiwanttoremove')]") {
          text(){
              replace('thetextiwanttoremove','')
          }
      }

但是,此代码不起作用。我收到一个错误,

Failed to create body.ts transformer: 
scripts/main.ts:13: function Text.$(Text) does not exist in namespace tritium; (called from Text.with(Regexp)).

还有,如果我把text()换成inner(),还是不行,谢谢

您好,请验证您的 Mixer.loc 文件中是否存在混音器标准库,然后尝试使用以下替换: http://www.tritium.io/current#Text.replace(Regexp%20%25search,%20Text%20%25with)

 $(".//script[contains(text(), 'txt2remove')]") {
    text() {
      replace(/txt2remove/, '') 
    }
 }

应该可以。

胡安·卡米洛