第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何從 Nodejs 訪問(wèn) aws 參數(shù)存儲(chǔ)值并在以后使用它

如何從 Nodejs 訪問(wèn) aws 參數(shù)存儲(chǔ)值并在以后使用它

泛舟湖上清波郎朗 2023-09-21 14:13:32
我有一個(gè)要求,我想訪問(wèn)參數(shù)存儲(chǔ)值,然后稍后使用它。這就是我正在做的:var options = {    Name: 'SecretAccessKey_temp',    WithDecryption: true};var secreretAccesKeyParam = ssm.getParameter(options).promise();secreretAccesKeyParam.then(function (data, err) {    if (err) console.log(err, err.stack);    else {        const secretAccessKey = data.Parameter.Value        console.log(secretAccessKey)              }});這給了我價(jià)值,但如果我想訪問(wèn)此之外的SecretAccessKey變量,它會(huì)給我“未定義”。誰(shuí)能幫我在這個(gè)函數(shù)之外訪問(wèn)這個(gè)secretAccessKey變量嗎?
查看完整描述

2 回答

?
白板的微信

TA貢獻(xiàn)1883條經(jīng)驗(yàn) 獲得超3個(gè)贊

由于您的變量secreretAccesKeyParam是一個(gè)承諾,因此您將無(wú)法訪問(wèn)secretAccessKey承諾處理程序(例如)的上下文(例如function (data, err) {...})。根據(jù)承諾的定義這樣做:


const myPromise = new Promise((resolve, reject) => {

  setTimeout(() => {

    resolve('foo');

  }, 300);

});

var myRes = 'bar';

myPromise.then(dunction (data, err) {

  myRes = data;

  console.log(myRes); // executed asynchronously

});

console.log(data); // executed sychronously so printed first. myRes value is still 'bar'.

會(huì)給你輸出:


'bar'

'foo'

如果您想像同步一樣處理事情,您可能想要做的是使用異步函數(shù)。


var options = {

    Name: 'SecretAccessKey_temp',

    WithDecryption: true

};


var secreretAccesKeyParam = ssm.getParameter(options).promise();


(async () => {

  try {

    const data = await secreretAccesKeyParam;

  } catch (err) {

    console.log(err, err.stack);

  }


  const secretAccessKey = data.Parameter.Value;

  console.log(secretAccessKey);

  ... // any action with your secret access key

})(); 

或者,如果您稍后已經(jīng)在使用處理程序函數(shù):


let _secretAccessKey;

const getSecretAccessKey = async () => {

  if (!_secretAccessKey) {

    try {

      const data = await secreretAccesKeyParam;

    } catch (err) {

      console.log(err, err.stack);

      return null;

    }

    _secretAccessKey = data.Parameter.Value;

  }

  return Promise.resolve(_secretAccessKey);

}


...


async function mySuperHandler() {

  const secretAccessKey = await getSecretAccessKey();

  // do something with the secret

}


查看完整回答
反對(duì) 回復(fù) 2023-09-21
?
慕仙森

TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超8個(gè)贊

將其設(shè)置為 env 怎么樣?我目前使用此方法,但您必須確保在使用它之前設(shè)置 env 。


secreretAccesKeyParam.then(function (data, err) {

  if (err) console.log(err, err.stack);

  else {

    process.env.secretAccessKey = data.Parameter.Value;

    const secretAccessKey = process.env.secretAccessKey;

    console.log(secretAccessKey);

  }

});


查看完整回答
反對(duì) 回復(fù) 2023-09-21
  • 2 回答
  • 0 關(guān)注
  • 135 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)