那是什么js模板引擎?

What js template engine is that?

我在庞大的 nodejs 项目中工作。它来自外包人员。它包含数百个插件和库。我无法识别其中使用的模板引擎。有人可以帮忙吗? 样品:

    var $mapsIfAlbum = (
      <section class="slide section" data-index="2" style={{top: mapsPos + '%', zIndex: mapsPos}}>
        <div class="maps">
          {info}
          <_Maps />
        </div>
      </section>
    );

这个看起来像小胡子,但两部分都在一个文件中。是否可以在一个文件中使用两个模板引擎?

var bodyStyles = `
${hideIconsWhenMobile}
  @media screen and (max-width: 720px) {
    body {
      background: #fff !important;
    }
  }
  `;

它被称为模板文字

当您将 NodeJS 更新到版本 4.0.0 及更高版本时,这被认为是 [=19 的新功能=]ES6 在这里你可以使用这个 backquotes,(也称为 grave accents)而不是使用 + 进行连接。

希望对您有所帮助!

第一个看起来像是 React 常用的 JSX。

是的,就像其他人提到的那样,第二个是模板文字。