在 visual studio 代码中尝试 运行 服务器时表示错误
express error when try to run the server in visual studio code
我以 html 模板代码的形式发送了请求,但我将其写在单行中,它显示直接内容,但是当我中断其中的行时,它显示字符串文字错误
const express = require('express')
const app = express()
app.get('/', (req, res) => {
let result = 0
res.send('
<html>
<body>
<h1>Result = ${result}</h1>
</body>
</html>
')
})
app.listen(3232, () => {
console.log('server started on http://localhost:3232')
})
res.send(`
<html>
<body>
<h1>Result = ${result}</h1>
</body>
</html>
`);
对 multi-line 个字符串使用反引号 (`)
我以 html 模板代码的形式发送了请求,但我将其写在单行中,它显示直接内容,但是当我中断其中的行时,它显示字符串文字错误
const express = require('express')
const app = express()
app.get('/', (req, res) => {
let result = 0
res.send('
<html>
<body>
<h1>Result = ${result}</h1>
</body>
</html>
')
})
app.listen(3232, () => {
console.log('server started on http://localhost:3232')
})
res.send(`
<html>
<body>
<h1>Result = ${result}</h1>
</body>
</html>
`);
对 multi-line 个字符串使用反引号 (`)