Files
nightsurfer7 6e58cbea78 Minor typo correction (#29484)
The spelling of response had a typo.
2018-11-27 13:16:44 -08:00

720 B
Raw Blame History

title, localeTitle
title localeTitle
Use the .env File 使用.env文件

使用.env文件

我们可以使用.toUpperCase方法使字符串全部大写例如

  var response = "Hello World".toUpperCase(); // now becomes "HELLO WORLD" 

我们现在需要做的就是检查环境变量的值是什么,你可以这样做:

   if (process.env.VAR_NAME === "allCaps") { 
    response = "Hello World".toUpperCase(); 
   } else { 
    response = "Hello World"; 
   } 
  }); 

帮助我们的社区扩展这些提示和指南