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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

需要的動態(tài)變量

需要的動態(tài)變量

炎炎設(shè)計 2023-03-24 15:10:53
我懷疑我是否讀取了帶有“require”的 JSON 文件,并且這個 JSON 文件更新后也會更改代碼中設(shè)置的變量?這是一個例子——這是不斷更新的 json 文件context = {id: 45121521541, //changing valuename: node,status: completed,}我通過這段代碼得到了這個 JSON 的值var context = require ('./ context.json')代碼會不斷更新 json 并且數(shù)據(jù)會發(fā)生變化,當(dāng)代碼處于活動狀態(tài)時,我將通過“require”獲取 JSON 的值,這是可能的,或者 require 不允許我?
查看完整描述

1 回答

?
郎朗坤

TA貢獻1921條經(jīng)驗 獲得超9個贊

您應(yīng)該使用fs.readFileSync()它而不是require()- 當(dāng)您第一次使用 require 時,它會將其提取到模塊 require 緩存中,后續(xù)調(diào)用將從那里加載,因此您不會看到及時的更新。如果您從中刪除密鑰,require.cache它也會觸發(fā)重新加載,但總體而言效率會低于僅讀取文件。

includingfs.readFileSync()每次執(zhí)行時都會同步讀取文件內(nèi)容(阻塞)。您可以結(jié)合自己的緩存/等來提高效率。如果您可以異步執(zhí)行此操作,那么 usingfs.readFile()是更可取的,因為它是非阻塞的。

const fs = require('fs');


// your code


// load the file contents synchronously

const context = JSON.parse(fs.readFileSync('./context.json')); 


// load the file contents asynchronously

fs.readFile('./context.json', (err, data) => {

  if (err) throw new Error(err);

  const context = JSON.parse(data);

});


// load the file contents asynchronously with promises

const context = await new Promise((resolve, reject) => {

  fs.readFile('./context.json', (err, data) => {

    if (err) return reject(err);

    return resolve(JSON.parse(data));

  });

});

如果你想從中刪除require.cache你可以這樣做。


// delete from require.cache and reload, this is less efficient...

// ...unless you want the caching

delete require.cache['/full/path/to/context.json'];

const context = require('./context.json'); 


查看完整回答
反對 回復(fù) 2023-03-24
  • 1 回答
  • 0 關(guān)注
  • 129 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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