我在stackoverflow上看到许多不同的答案,您必须原谅我,因为我从未在nodejs / ejs之前使用过这类东西。
我发现了creativetim的一个名为Argon Dashboard的仪表板。我正在尝试设置它。到目前为止,我已经将数据库和文件解压缩。让Redis设置一切准备就绪。正如文档所示,我已经创建了一个index.html。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Argon Dashboard</title>
<!-- Favicon -->
<link href="/assets/img/brand/favicon.png" rel="icon" type="image/png">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<!-- Icons -->
<link href="/assets/vendor/nucleo/css/nucleo.min.css" rel="stylesheet">
<link href="/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet">
<!-- Argon CSS -->
<link type="text/css" href="/assets/css/argon.min.css" rel="stylesheet">
</head>
<body>
<!-- Core -->
<script src="/assets/vendor/jquery/dist/jquery.min.js"></script>
<script src="/assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<!-- Argon JS -->
<script src="/assets/js/argon.min.js"></script>
</body>
</html>
我的问题是我不确定如何上手,甚至不知道该去哪里。就像我说过的那样,我尝试了堆栈溢出,但是我无法真正拼凑出正在发生的事情。氩气的文档未演示如何调用模板。我想这很简单吗?
答案 0 :(得分:0)
启动它很简单。您有http服务器设置吗?它在http服务器上运行。将服务器定向到拥有文件的文件夹,然后调用类似http://localhost:<whatever port you configured in the server>/index.html
的名称。您甚至可以向服务器说index.html是您的默认页面,然后您将只调用http://localhost:<whatever port you configured in the server>
。
您可以在此处找到一些有关如何在节点上创建http服务器的示例:
https://stackabuse.com/how-to-start-a-node-server-examples-with-the-most-popular-frameworks/
之后,您可以开始尝试它。
一些非常简单的示例甚至可以直接在没有服务器的情况下运行。只需在任何浏览器中打开index.html。
特别是使用此模板,我已经下载了该模板,然后单击index.html并打开它没有任何问题。如果您想要的只是在您的计算机中看到它,那么您要做的就是在解压缩argon-dashboard-master.zip
文件之后在浏览器中打开index.html页面。只需双击就足够了。
如果您需要其他东西,请发表评论,我会尽力帮助您。