Node.js博客系统--20.后台管理-博客内容编辑与删除

首先修改上一节一个错误

 然后在内容首页的路由中这样添加

打印出来是这个样子

 在页面中这样获取分类名称

回忆一下界面

 

接着写修改的路由

 

 编写编辑的界面content_edit.html

{% extends 'layout.html' %}


{% block main %}
<ol class="breadcrumb">
    <li><a href="#">内容首页</a></li>
    <li>编辑内容</li>
</ol>



<form action="/admin/content/edit" method="post">
    <div class="form-group">
        分类{{content.category._id.toString()}}
        <select name="category" id="category" class="form-control">
            {% for category in categories%}
            {% if content.category._id.toString() === category.id %}
            <option value="{{category.id}}" selected>{{category.name}}</option>
            {% else %}
            <option value="{{category.id}}">{{category.name}}</option>
            {% endif%}
            {% endfor %}
        </select>
    </div>
    <div class="form-group">
        标题
        <input type="text" value='{{content.title}}'class="form-control" name="title" placeholder="请输入标题">
    </div>
    <div class="form-group">
        简介
        <textarea class="form-control" name="description" rows="5">{{content.description}}</textarea>
    </div>
    <div class="form-group">
        内容
        <textarea class="form-control" name="content" rows="10">{{content.content}}</textarea>
    </div>
    <input type="submit" value="提交">
</form>


{% endblock %}

为了达到这个效果

将内容修改的路由做以下优化

现在写修改内容的保存

 

删除功能

这一节有一个bug  编辑的时候 一直出现

好吧,折腾了好久都没有弄出来 呜 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值