Codemirror,在doublequotes中的defineMode

时间:2016-10-31 08:01:02

标签: javascript codemirror codemirror-modes

我正在编写自定义叠加层来创建engage类型的令牌,用于某些自定义功能/样式。

我目前正在创建双引号内的标记,例如"EXP=SOMETHING"我只需要获取双引号之间的内容:EXP=SOMETHING,我可以轻松跳过第一个引号并得到类似的内容EXP=SOMETHING"但我似乎无法找到一种可行的方法来跳过最后一句话,我一直在讨论这个问题已经很久了我开始认为这实际上是不可能的,因为一个角色的备份会返回一个EXCEPTION: Uncaught (in promise): Error: Mode engage failed to advance stream.这是有道理的。我确信我错过了一些东西,我希望得到一些意见。

按照生成EXP=SOMETHING"的代码 感谢您的帮助: - )

    CodeMirror.defineMode("engage", function(config, parserConfig) {
  var engageOverlay = {
    startState: function() {return {inString: false};},
    token: function(stream, state) {
      // If we are not inside the engage token and we are peeking a "
      if (!state.inString && stream.peek() == '"') {
        // We move the stream to the next char
        // Then mark the start of the string
        // Then return null to avoid including the first " as part of the token
        stream.next();
        state.inString = true;
        return null;
      }

      // We are inside the target token
      if (state.inString)
      {
        if (stream.skipTo('"'))
        {
          stream.next();
          state.inString = false;
        }
        else
        {
          stream.skipToEnd();
        }
        return "engage";
      }
      else
      {
        stream.skipTo('"') || stream.skipToEnd();
        return null;
      }
    }
  };
  return CodeMirror.overlayMode(CodeMirror.getMode(config, parserConfig.backdrop || "xml"), engageOverlay);
});

1 个答案:

答案 0 :(得分:0)

如果有人偶然发现这个问题,这就解决了上述问题:

// If we are not inside the engage token and we are peeking a "
      if ( !state.inString && stream.match(/="/, true) ) {
        state.inString = true;
        return null;
      }

      // We are inside the target token
      if (state.inString)
      {
        if (stream.skipTo('"'))
        {
          state.inString = false;
          return "engage";
        }
        else
        {
          stream.skipToEnd();
          return null;
        }
      }

      stream.next();
      return null;

我们基本上只是区分双引号的开头和结尾,在我的特殊情况下,我总是在第一个之前有一个=,如果不是这样,你可以轻松设置另一个标志。