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

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

HTML 表單在 Handlebars 視圖中不顯示正確的數(shù)據(jù)

HTML 表單在 Handlebars 視圖中不顯示正確的數(shù)據(jù)

慕容森 2023-01-06 11:15:10
在使用 sequelize 和 postgresql(由 brad traversy 提供)創(chuàng)建一個(gè)快速應(yīng)用程序時(shí),我第一次使用 handlebars。填寫表單后,我使用 Joi 來驗(yàn)證請(qǐng)求主體,如果出現(xiàn)錯(cuò)誤,我會(huì)重新呈現(xiàn)表單(視圖)并保留最初輸入的值。問題是發(fā)生這種情況時(shí),文本會(huì)被自動(dòng)修剪。EG 我用“Hello World”填寫標(biāo)題字段并且不填寫表單中的其他字段,Joi 會(huì)不高興所以我重新呈現(xiàn)表單(視圖)并且當(dāng)標(biāo)題重新填充到表單中時(shí),它會(huì)只是說“你好”。千兆資源的發(fā)布端點(diǎn)// Add a Gigrouter.post("/add", (req, res) => {    let { title, technologies, budget, description, contact_email } = req.body;    const { error } = validateGig(req.body);    if (error) {        // Re-Render The Form        return res.status(400).render("add", {            error: error.details[0].message,            title,            technologies,            budget,            description,            contact_email        });    } else {        budget == "" ? (budget = "Unknown") : (budget = `$${budget}`);        // Make Lower Case and Remove Space After Comma        technologies = technologies.toLowerCase().replace(/, /g, ",");        // Insert Into Table        Gig.create({            title,            technologies,            budget,            description,            contact_email        })            .then((gig) => res.redirect("/gigs"))            .catch((err) => console.log("Error Adding Gig" + err));    }});
查看完整描述

1 回答

?
Smart貓小萌

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

在模板中使用變量時(shí),您仍需要在屬性值兩邊加上引號(hào)。

例如:

value={{title}}

應(yīng)該寫成

value="{{title}}"


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

添加回答

舉報(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)