Maison  >  Questions et réponses  >  le corps du texte

node.js - 在javascript中,如何判断运行环境?

我准备使用mean(mongodb+express+angular+nodejs)开发一个应用,并建立一套框架将前端与后端之间的界限模糊起来。这里遇到一个问题,有时候前后端的代码可能会放在同一个文件里,这时怎么通过javascript判断目前代码的运行环境是前段还是后端呢?

PHPzPHPz2768 Il y a quelques jours885

répondre à tous(3)je répondrai

  • 数据分析师

    数据分析师2017-10-01 01:17:08

    node.js - Comment déterminer l'environnement d'exécution en javascript ? -Site Web PHP chinois Q&A-node.js - Comment déterminer l'environnement d'exécution en javascript ? - Questions et réponses sur le site Web chinois PHP

    Veuillez regarder et apprendre.

    répondre
    0
  • 黄舟

    黄舟2017-04-10 12:49:40

    以async库为例,该库可以在浏览器或者node.js中使用

    var root = this
    // AMD / RequireJS
    if (typeof define !== 'undefined' && define.amd) {
        define([], function () {
            return async;
        });
    }
    // Node.js
    else if (typeof module !== 'undefined' && module.exports) {
        module.exports = async;
    }
    // included directly via <script> tag
    else {
        root.async = async;
    }
    

    répondre
    0
  • 巴扎黑

    巴扎黑2017-04-10 12:49:40

    (function(){
        var root=this,
            isBrowserSide=false;
        if(typeof window !=="undefined" && root===window){
            isBrowserSide=true;
        }
    }).call(this);

    répondre
    0
  • Annulerrépondre