我只是想知道如何从gulp任务中获取系统环境变量。我知道你可以通过process.env.NODE_ENV
获取流程环境变量,但是,我想得到系统环境变量。例如,当我将一个导出到我的系统时,如下所示:export MY_UN='username'
我希望能够通过任务或其他任务从我的gulp脚本中访问MY_UN
。
有什么想法吗?
答案 0 :(得分:0)
.profile
获取我的系统环境变量。好吧,因为我忘记了我的[HttpPost]
public ActionResult Create(MySampleVM samplevm)
{
//here i write my EF logic to save data to sql table .
// and then return the value as a JSON object to the client
return Json(new { result = 123 });
}
文件。我现在能够获得系统环境变量。请原谅我的Idiocracy。