TypeError: object is not a function
10 回复
@Jackson @hexie
错误修复:
routes.js
1、app.get('/tag/:name/edit', auth.adminRequired, tag.view);
2、app.post('/tag/:name/edit', auth.adminRequired, tag.update);
contrllers/tag.js
3、exports.update里的
Tag.findOne({name: tag_name}, function (err, tag)
更改为
Tag.getTagByName(tag_name, function (err, tag)
标签碰到问题的同学可以尝试下。