我正在从mongodb获取数据,当在文本区域中的pug中显示变量值时,描述变量<hello my name is ahmed></hello my name is ahmed>
的输出
存储在描述中的数据仅为hello my name is ahmed
代码可见
.row
.col-md-6
.form-group
label(for='inputPassword3') Description
textarea#inputPassword3.form-control(name="description", cols="30", rows="10" placeholder="Description")
if user.description != undefined || user.description != null
#{user.description}
答案 0 :(得分:0)
与pug模板引擎相关的显示值,我们应该使用此| #{user.description}
以避免将变量值转换为文本区域内的标记,因此更新后的代码将为
`.row
.col-md-6
.form-group
label(for='inputPassword3') Description
textarea#inputPassword3.form-control(name="description", cols="30", rows="10" placeholder="Description")
if user.description != undefined || user.description != null
| #{user.description}`