gpt4 book ai didi

javascript - vue-style-loader 来自 cdn 的内联 css

转载 作者:行者123 更新时间:2023-11-28 04:15:42 27 4
gpt4 key购买 nike

我想将我的 css 类样式传递到 .vue 文件中的 html 标签中。我在 webpack.config.js 中的 vue 加载器设置:

 {
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
css: ExtractTextPlugin.extract({
use: 'css-loader',
fallback: 'vue-style-loader'
})
}
}
},

但是,我不知道如何配置该插件:

plugins: [
new ExtractTextPlugin("https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css")
]

我什至不知道 vue-style-loader 是否可以为我做到这一点。谁能告诉我如何将我的样式(cdn 或单个 css 文件)嵌入到 html 标签中,谢谢。

最佳答案

我终于找到解决办法了:我没有使用webpack来编译模板。我尝试将html内容传递到服务器端(node.js,不是必需的,你可以在客户端执行),并使用 inline-css将样式嵌入到相关标签中。也许这不是最好的解决方案,但它确实解决了我的问题。如果有人得到更好的答案,请随时告诉我。

exports.convertHtmlToDocx = function(req,res){
const HtmlDocx = require('html-docx-js');
const fs = require("fs");
const body = req.body;
let html = req.body.html;
html = `<!DOCTYPE html>
<html>
<head>
<style>
p{color:red;}
</style>
<link rel="stylesheet" href="localhost:3000/stylesheets/bootstrap-3.3.7/dist/css/bootstrap.css"></link>
</head>
<body>${html}</body>
</html>`;

const options = {
url: 'localhost:3000'
}
const inlineCss = require('inline-css');

inlineCss(html, options)
.then(function(html) {
console.log(html)
});
}

客户端:

const apiUrl = '';
import axios from 'axios'
api.exportDocx = function(param, callback){
//param: { html: '<div><p>xxxxx</p></div>'} ....
axios.post(`${apiUrl}/convertHtmlToDocx`,param).then(result => {
callback(result)
});
}

关于javascript - vue-style-loader 来自 cdn 的内联 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45878994/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com