2021SC@SDUSC
src/controller/home/detail.js
根据名称推测,应该是和细节相关的内容。细节这个词语用在这里不太合适,或许应该称之为详情更合适一些。和上一个文件同样的是,整个文件仅由一个module.exports组成:module.exports = class extends think.cmswing.center {}// 详情页[核心];
async indexAction() {
const id = this.get('id') || 0;
注释掉了id错误的情况,让我们来看看为什么——因为进行了或0,所以在出现错误的时候使得id为0而不是报出错误,这样做有什么用意呢?或许我们看到对id的相关处理时就能看到对应的解决办法了。
const document = this.model('cmswing/document');
let info = await document.detail(id);
if (info.errno == 702) {
const error = this.controller('cmswing/error');
return error.noAction(info.errmsg);
}
获取document,令info是根据id找到的detail。如果错误是某种类型,就返回错误。这里的逻辑非常清楚。
let roleid = 8;
if (this.is_login) {
roleid = await this.model('member').where({id: this.is_login}).getField('groupid', true);
}
const priv = await this.model('cmswing/category_priv').priv(info.category_id, roleid, 'visit');
if (!priv) {
const error = this.controller('cmswing/error');
return error.noAction('您所在的用户组,禁止访问本栏目!');
}
又是根据角色身份进行的访问控制。如果登录就获得用户所在的组信息,判断是否能够访问,不能访问就报错。逻辑和上一篇完全相同。
const str = info.content;
if (!think.isEmpty(str)) {
let img;
if (this.isMobile) {
img = image_view(str, 640, 4);
} else {
img = image_view(str, 818, 0);
}
info.content = img;
}
又是根据设备情况进行的判断。根据不同设备压缩不同图片尺寸,并将内容设置为img。
let cate = await this.category(info.category_id);
cate = think.extend({}, cate);
this.meta_title = info.title;
this.keywords = info.keyname ? info.keyname : '';
this.description = info.description ? info.description : '';
let keywords;
if (!think.isEmpty(info.keyname)) {
keywords = (info.keyname).split(',');
}
this.assign('keywords', keywords);
这一段是各种信息。分类信息category,简称cate,来源自information根据category_id进行查找。seo有标题,关键词和描述。关键词如果不是空的,就用逗号分隔。额外值得一提的是assign(),它的用法参见此处:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Object/assignObject.assign() 方法用于将所有可枚举属性的值从一个或多个源对象分配到目标对象。它将返回目标对象。
await document.where({id: info.id}).increment('view');
if (!think.isEmpty(info.link_id) && info.link_id != 0) {
return this.redirect(info.link_id);
}
const breadcrumb = await this.model('cmswing/category').get_parent_category(cate.id, true);
this.assign('breadcrumb', breadcrumb);
依旧是一些可以称之为“杂活”的内容。访问统计功能是在document中找到id,并且对view进行增加操作。外链情况是如果有定义link_id,则返回对于这个id的重定向。面包屑信息依旧和上次类似,从model中找到父分类,并且分配在breadcrumb中。
const previous = await document.where({id: ['>', info.id], category_id: info.category_id, 'pid': 0, 'status': 1}).order('id DESC').find();
this.assign('previous', previous);
const next = await document.where({id: ['<', info.id], category_id: info.category_id, 'pid': 0, 'status': 1}).order('id DESC').find();
this.assign('next', next);
和面包屑比较类似,寻找并且分配给previous和next中。
let temp;
const model = await this.model('cmswing/model').get_model(info.model_id, 'name');
this.assign('category', cate);
let pid;
let pinfo;
if (info.pid != 0) {
let i = info.id;
while (i != 0) {
const nav = await document.where({id: i}).find();
if (nav.pid == 0) {
pinfo = nav;
pid = nav.id;
}
i = nav.pid;
}
} else {
pinfo = info;
pid = info.id;
}
从这里开始看得出来,前面的各种准备信息的获取已经做完了,开始进入内容的加载。至于是怎么加载的呢?就交给下一篇进行分析了。
总结
src/controller/home/detail.js是一个加载内容的重点文件,这里我们先分析了进行访问控制和相关链接的加载部分。
|