node+express+ejs使用模版引擎做的一个示例demo(2)

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><%= title %></title> <link href='https://www.jb51.net/stylesheets/style.css' /> </head> <body> <form method="post" action="https://www.jb51.net/form"> <label>new article</label><br> <textarea cols="100" row="5"></textarea> <input type="submit" value="pus"></input> </form> <div><%=message%></div> </body> </html>

在index.ejs里添加如下代码:

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>文章列表页</title> <link href='https://www.jb51.net/stylesheets/style.css' /> </head> <body> <h1><%= title %></h1> <p><a href="https://www.jb51.net/form" >发表新文章</a></p> <ul> <%items.forEach(function(item){%> <li><%=item.title%></li> <%})%> </ul> </body> </html>

运行项目: npm start

node+express+ejs使用模版引擎做的一个示例demo

访问::3000/

node+express+ejs使用模版引擎做的一个示例demo

点击发表新文章

node+express+ejs使用模版引擎做的一个示例demo

点击plus提交时,又回到首页

node+express+ejs使用模版引擎做的一个示例demo

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyzszp.html