我想知道如何使用Express提供svg文件。
以下是我到目前为止的尝试:
svg文件
<svg width="400" height="180">
<g>
<rect x="50" y="20" rx="20" ry="20" width="150" height="150"
style="fill:red;stroke: black;stroke-width:5;opacity:0.5"></rect>
</g>
</svg>
路线档案
var express = require('express');
var router = express.Router();
router.get('/myRoute', function (req, res, next) {
res.setHeader('Content-Type', 'image/svg+xml');
res.sendFile('../views/status.svg');
});
module.exports = router;
但是当我将浏览器指向该路径时,我收到以下错误:
This page contains the following errors:
error on line 1 at column 103: Opening and ending tag mismatch: link line 0 and head
Below is a rendering of the page up to the first error.
我不知道为什么这不起作用而且不确定在第103和第34列的哪一行#1;指着。我的代码库中没有这样的行和列。
有什么建议吗?
答案 0 :(得分:1)
尝试发送svg以查看但没有问题
res.sendFile('../views/status.svg');
对sendFile使用绝对链接
res.sendFile(__dirname + '/views/status.svg');