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

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

Node.js 的編碼問(wèn)題

Node.js 的編碼問(wèn)題

回首憶惘然 2023-10-14 16:19:30
我是編碼世界的新手,目前正在學(xué)校學(xué)習(xí),但我似乎遇到了一個(gè)我無(wú)法解決的問(wèn)題。我正在嘗試使用終端運(yùn)行我的 index.js 文件,但我不斷收到此錯(cuò)誤:Error: Cannot find module 'C:\Users\salij\OneDrive\Desktop\U2A\index'←[90m    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)←[39m←[90m    at Function.Module._load (internal/modules/cjs/loader.js:725:27)←[39m←[90m    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)←[39m←[90m    at internal/main/run_main_module.js:17:47←[39m {  code: ←[32m'MODULE_NOT_FOUND'←[39m,  requireStack: []}我不知道我錯(cuò)過(guò)了什么,因?yàn)椴榭次宜峁┑牟襟E,我不應(yīng)該收到此錯(cuò)誤。這是我的代碼,以防有人可以幫助我。TIAconst express = require ('express')const app = express ()const formidable = require ('formidable')app.use(express.static (__dirname + "/WebCalculatorSolution/WebCalculator"))app.get('/', (req,res)=>{const word = req.query.word   res.write('<h1>${word}</h1>')   res.end()})const port = 8000app.listen(port, ()=>{    console.log('Server ready at: http://localhost:${port}')})
查看完整描述

4 回答

?
溫溫醬

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

首先,嘗試安裝npm包


npm install express formidable


運(yùn)行此命令后將安裝所有軟件包


根據(jù)您的代碼,您嘗試在用戶(hù)通過(guò)查詢(xún)時(shí)顯示單詞。


您必須模板字符串,這樣您就可以直接在字符串中嵌入變量。


你可以這樣做。


const express = require('express')

const app = express()

const formidable = require('formidable')


app.use(express.static(__dirname + "/WebCalculatorSolution/WebCalculator"))


app.get('/', (req, res) => {


  let word;

  word = req.query.word ? req.query.word : "Welcome"; //If word won't passed then show welcome message else show word

  res.write(`<h1>${word}</h1>`)

  res.end()

})


const port = 8000

app.listen(port, () => {

  console.log(`Server ready at: http://localhost:${port}`)

})

不帶查詢(xún)參數(shù)

https://img1.sycdn.imooc.com/652a5436000102e513930551.jpg

傳遞查詢(xún)參數(shù)

https://img1.sycdn.imooc.com/652a544a0001be2413970558.jpg


查看完整回答
反對(duì) 回復(fù) 2023-10-14
?
瀟湘沐

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

使用以下命令安裝軟件包: npm install formidable。然后運(yùn)行服務(wù)器



查看完整回答
反對(duì) 回復(fù) 2023-10-14
?
BIG陽(yáng)

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

正確的模板文字語(yǔ)法是用反引號(hào) (``) 包裹文本,修改此行:


`Server ready at: http://localhost:${port}`


還有這一行:


`<h1>${word}</h1>`


查看完整回答
反對(duì) 回復(fù) 2023-10-14
?
紅顏莎娜

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

我終于找到了我的問(wèn)題。在 Visual Studio Code 中運(yùn)行 cmd 我注意到它試圖從文件資源管理器中完全不同的位置運(yùn)行我的索引文件。在我將其定向到索引文件實(shí)際所在的文件夾后,它終于開(kāi)始正常工作了。感謝大家的幫助。



查看完整回答
反對(duì) 回復(fù) 2023-10-14
  • 4 回答
  • 0 關(guān)注
  • 205 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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