如果不支持用户的浏览器,是否可以显示警告消息?

时间:2018-10-10 08:52:19

标签: reactjs google-chrome internet-explorer cross-browser

我正在处理反应应用程序,如果用户的旧浏览器不支持(例如IE 9),客户​​希望它显示特殊消息。

很久以来,我一直尝试使用react-device-detect软件包检测一些“流行的”旧浏览器。

src / index.js

import { browserName, browserVersion } from "react-device-detect";

const render = Component => {
  if (browserName === "IE" && browserVersion < 10) {
    ReactDOM.render(<UnsupportedBrowser />, document.getElementById("root"));
  } else {
    ReactDOM.render(
      <AppContainer>
        <Component store={store} history={history} />
      </AppContainer>,
      document.getElementById("root")
    );
  }
};

并添加条件注释:

public / index.html

<!--[if lte IE 9]>
  Please upgrade your browser
<![endif]-->

但是我怀疑,有更好的方法可以做到这一点,而我在网上找不到。

4 个答案:

答案 0 :(得分:7)

我发现了很多JS脚本来检测用户的浏览器名称和版本,因此我不得不将它们混合在一起以获得我想要的

public / index.html

<script type="text/javascript">
    function get_browser() {
      var ua = navigator.userAgent, tem, M = ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
      if (/trident/i.test(M[1])) {
        tem = /\brv[ :]+(\d+)/g.exec(ua) || [];
        return { name: 'IE', version: (tem[1] || '') };
      }
      if (M[1] === 'Chrome') {
        tem = ua.match(/\bOPR\/(\d+)/)
        if (tem != null) { return { name: 'Opera', version: tem[1] }; }
      }
      if (window.navigator.userAgent.indexOf("Edge") > -1) {
        tem = ua.match(/\Edge\/(\d+)/)
        if (tem != null) { return { name: 'Edge', version: tem[1] }; }      
      }
      M = M[2] ? [M[1], M[2]] : [navigator.appName, navigator.appVersion, '-?'];
      if ((tem = ua.match(/version\/(\d+)/i)) != null) { M.splice(1, 1, tem[1]); }
      return {
        name: M[0],
        version: +M[1]
      };
    }

    var browser = get_browser()
    var isSupported = isSupported(browser);

    function isSupported(browser) {
      var supported = false;
      if (browser.name === "Chrome" && browser.version >= 48) {
        supported = true;
      } else if ((browser.name === "MSIE" || browser.name === "IE") && browser.version >= 10) {
        supported = true;
      } else if (browser.name === "Edge") {
        supported = true;
      }
      return supported;
    }

    if (!isSupported) {
      document.write(<h1>My message</h1>)
    }
  </script>

如果浏览器是chrome> = 48或> = 10或任何版本的edge,则该脚本允许用户继续。否则,它会显示一条特殊消息,要求用户更新或更改其浏览器。

您还可以根据需要自定义此脚本,修改isSupported()函数。

答案 1 :(得分:2)

您在npm上拥有detect browser软件包,可以为您提供帮助

答案 2 :(得分:2)

我认为最好和最方便用户的选择是将用户重定向到一个专用的ie.html页面,您可以在其中显示有关如何下载其他浏览器的说明,而仅关心该页面中的所有IE内容。

这样,您无需对React进行任何操作,只需将以下几行添加到您的index.html

<script type="application/javascript">
    if (/MSIE|Trident/.test(window.navigator.userAgent)) window.location.href = '/ie.html';
</script>

答案 3 :(得分:1)

您可以做的是,您必须检查浏览器版本,就像我处理的Internet Explorer版本早于11一样。因此,请检测浏览器。无需添加额外的程序包,只需几行代码,然后编写两个ReactDOm.renders,一个用于成功/受支持,另一个用于不受支持的版本。

这是我的做法,也许会对您有所帮助:

// get the Version of Browser, older than '11'
const getIEVersion = () => {
  const ua = window.navigator.userAgent;
  const msie = ua.indexOf('MSIE ');
  if (msie > 0) {
    // IE 10 or older => return version number
    return parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10);
  }
  const trident = ua.indexOf('Trident/');
  if (trident > 0) {
    // IE 11 => return version number
    const rv = ua.indexOf('rv:');
    return parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10);
  }
  const edge = ua.indexOf('Edge/');
  if (edge > 0) {
    // Edge (IE 12+) => return version number
    return parseInt(ua.substring(edge + 5, ua.indexOf('.', edge)), 10);
  }
  // other browser
  return false;
};

// Method for Rendering of Unsupported Version
const UnsupportedBrowserPage = () => (
  <div>
    <p>Test Page For Versions lower then 11 on IE</p>
  </div>
);


const iEVersion = getIEVersion();

if (iEVersion && iEVersion < 11) {

ReactDOM.render(<UnsupportedBrowserPage />, document.getElementById('root'));

} else {
  ReactDOM.render(
    <SupportedApp />, document.getElementById('root')
  );
}