gpt4 book ai didi

css - React Native - 在 WebView 中导入 css/js

转载 作者:行者123 更新时间:2023-11-28 03:46:55 27 4
gpt4 key购买 nike

我在头部部分有一个带有 CSS 和 JS 链接的 WebView。它们都是 CDN 链接,所以一切正常。

是否可以直接从 node_modules 文件夹中导入 CSS/JS?

例如,如果我想将 bootstrap 的 CSS 导入到 webview 中

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">

有效,但是 <link rel="stylesheet" href="./bootstrap.min.css">

不起作用(假设出于测试目的,我将文件放在与 webview 组件相同的文件夹中)

如果您需要查看更多代码或问题不清楚,请告诉我。另外,这里仅以 bootstrap 为例。谢谢!

最佳答案

您可以将其作为普通 html 导入:

var bootstrap = `<!DOCTYPE html>
<html>
<head>
<link href="bootstrap.min.css" rel="stylesheet" />
<style type="text/css">
img{
max-width: 100%;
}
</style>
</head>
<body>X</body></html>`;
bootstrap = bootstrap.replace('X', html);
return (
<WebView
source={{html: bootstrap}}
style={{marginTop: 20}}
/>
);

其中 html 是您的内容,您必须复制样式或喜欢它并根据您的需要进行自定义。它对我很有用

关于css - React Native - 在 WebView 中导入 css/js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43921898/

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