- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在开发一个博客,您可以在其中回答问题,人们可以对答案发表评论。提问和回答问题效果很好。但发表评论则不然。经过调查我知道它与 JSON 相关。可能以某种方式处理主体解析器。也许我错了。花了几个小时比较代码,找不到错误所在。这是错误和 console.log:
POST http://localhost:8000/answers/5807c9ef24adc7ea591a35b1/comments/ 400 (Bad Request)
Object {data: "SyntaxError: Unexpected token f<br> a… at process._tickCallback (node.js:356:17)↵", status: 400, config: Object, statusText: "Bad Request"}
config
:
Object
data
:
"SyntaxError: Unexpected token f<br> at parse (C:\Users\US\Documents\coding\KelvinDashDemo\node_modules\body-parser\lib\types\json.js:83:15)<br> at C:\Users\US\Documents\coding\KelvinDashDemo\node_modules\body-parser\lib\read.js:116:18<br> at invokeCallback (C:\Users\US\Documents\coding\KelvinDashDemo\node_modules\body-parser\node_modules\raw-body\index.js:262:16)<br> at done (C:\Users\US\Documents\coding\KelvinDashDemo\node_modules\body-parser\node_modules\raw-body\index.js:251:7)<br> at IncomingMessage.onEnd (C:\Users\US\Documents\coding\KelvinDashDemo\node_modules\body-parser\node_modules\raw-body\index.js:307:7)<br> at emitNone (events.js:67:13)<br> at IncomingMessage.emit (events.js:166:7)<br> at endReadableNT (_stream_readable.js:921:12)<br> at nextTickCallbackWith2Args (node.js:442:9)<br> at process._tickCallback (node.js:356:17)↵"
headers
:
(d)
status
:
400
statusText
:
"Bad Request"
__proto__
:
Object
这是我的 app.js:
var express = require('express');
var mongoose = require('mongoose');
var bodyParser = require('body-parser');
var expressSession = require('express-session');
var path = require('path');
//App init
var app = express();
require('./server/config/mongoose.js');
var sessionConfig = {
secret:'CookieMonster', // Secret name for decoding secret and such
resave:false, // Don't resave session if no changes were made
saveUninitialized: true, // Don't save session if there was nothing initialized
name:'myCookie', // Sets a custom cookie name
cookie: {
secure: false, // This need to be true, but only on HTTPS
httpOnly:false, // Forces cookies to only be used over http
maxAge: 3600000
}
}
app.use(bodyParser.urlencoded({extended:true}));
app.use(bodyParser.json({extended:true}));
app.use(expressSession(sessionConfig));
我的客户端commentFactory:
kelvindashdemo.factory('CommentFactory', ['$http', function($http){
var factory = {};
factory.createComment = function(comment, topicId, callback){
$http({
method:"POST",
url:"/answers/"+topicId+"/comments/",
data:comment
}).then(function success(){
callback();
}, function failure(res){
console.log(res);
})
}
factory.dislike = function(id,callback){
$http({
method:"GET",
url:"/comments/dislike/"+id
}).then(function success(){
callback();
}, function failure(res){
console.log(res);
})
}
factory.like = function(id,callback){
$http({
method:"GET",
url:"/comments/like/"+id
}).then(function success(){
callback();
}, function failure(res){
console.log(res);
})
}
return factory;
}]);
我的服务器端commentController:
var mongoose = require('mongoose');
var Answer = mongoose.model('Answer');
var User = mongoose.model('User');
var Comment = mongoose.model('Comment');
module.exports = {
createNew: function(req, res){
console.log("HERE");
var commentInfo = req.body;
commentInfo._author = req.session.user;
commentInfo._answer = req.params.id;
var comment = new Comment(commentInfo);
comment.save(function(err, comment){
User.update({_id:req.session.user}, {$push:{comments:comment}}, function(err, user){ //pushes comment into user db with id
Answer.update({_id:req.params.id}, {$push:{comments:comment}}, function(err, comment){ //pushes comment into topic db with id
if (!err){
res.sendStatus(200);
}else{
res.sendStatus(400); //can also be a 500 error msg
}
});
});
})
},
最后是我的服务器端评论模型:
var mongoose = require('mongoose');
var CommentSchema = new mongoose.Schema({
comment: {type:String, required:true},
_answer: {type: mongoose.Schema.Types.ObjectId, required:true, ref: 'Answer'},
likes: {type:Number, default:0},
dislikes: {type:Number, default:0},
_author: {type: mongoose.Schema.Types.ObjectId, required:true, ref: 'User'},
}, {timestamps:true});
mongoose.model('Comment', CommentSchema);
kelvindashdemo.controller('topicsController', ['$scope', 'TopicFactory', '$location', '$routeParams', 'AnswerFactory', 'CommentFactory', function($scope, TopicFactory, $location, $routeParams, AnswerFactory, CommentFactory){
TopicFactory.getTopic($routeParams.id, function(topic){
$scope.topic = topic;
console.log(topic);
})
$scope.postAnswer = function(answer, topicId){ AnswerFactory.createAnswer(answer, topicId, function(){ TopicFactory.getTopic($routeParams.id, function(topic){
$scope.topic = topic;
$scope.answer = {};
console.log(topic);
})
})
}
$scope.postComment = function(comment, answerId){
CommentFactory.createComment(Comment, answerId, function(){
TopicFactory.getTopic($routeParams.id, function(topic){
$scope.topic = topic;
console.log(topic);
})
})
}
$scope.like = function(id){
CommentFactory.like(id, function(){
TopicFactory.getTopic($routeParams.id, function(topic){
$scope.topic = topic;
console.log(topic);
})
})
}
$scope.dislike = function(id){
CommentFactory.dislike(id, function(){
TopicFactory.getTopic($routeParams.id, function(topic){
$scope.topic = topic;
console.log(topic);
})
})
}
}])
欢迎任何和所有反馈。我期待在某个地方听到它缺少逗号。
最佳答案
当您调用createComment
时:
$scope.postComment = function(comment, answerId) {
CommentFactory.createComment(Comment, answerId, function(){
TopicFactory.getTopic($routeParams.id, function(topic){
$scope.topic = topic;
console.log(topic);
})
})
}
...您正在传递 Comment
,它在您发布的任何代码中都没有定义,但我猜测它是某种构造函数。在该函数中:
factory.createComment = function(comment, topicId, callback){
$http({
method:"POST",
url:"/answers/"+topicId+"/comments/",
data:comment
}).then(function success(){
callback();
}, function failure(res){
console.log(res);
})
}
...第一个参数作为数据发送到$http
。如果 Comment
是一个函数,而不是可以序列化为 JSON 的对象,它会被转换为字符串 function Comment() {[native code]}
,这将炸毁服务器上的 JSON 解析器(注意它提示遇到 f
字符)。
我认为你的意思是在调用CommentFactory.createComment
时传递comment
,而不是Comment
:
$scope.postComment = function(comment, answerId) {
CommentFactory.createComment(comment, answerId, function(){
TopicFactory.getTopic($routeParams.id, function(topic){
$scope.topic = topic;
console.log(topic);
})
})
}
关于javascript - 平均堆栈 : "SyntaxError: Unexpected token f" Comments not posting,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40164851/
有没有办法在 Brainfuck 中做包含句点('.')的评论? 我知道我基本上可以使用不是命令之一的每个字符,它会被忽略,但我想在文件顶部的注释中放置一个版本号,其中包含一个句点。 最佳答案 您可以
我不明白以下代码的 % comment.length 位: comment.charAt(i % comment.length()) 括号之间的部分是否会转换为整数,其值表示与评论长度相关的i? 例如
我终于找到了我的 PHP 脚本无法运行的原因。这是因为 MySQL "--comment"而不是 "-- comment"。我最近开始使用 PHP,直到那时,我一直使用“--comment”。现在,我
是否可以在项目中搜索用户在 checkin 文件后添加的评论? (手动可以通过选择一个文件,右键单击 --> 显示历史记录 --> 选择版本 --> 详细信息,在评论 Pane 中查看)。 是否可以自
我不完全确定这是否不是插件,但是在 .js 文件中开始一行注释之后,例如,当我按下回车键时,下一行也以“//”开头。这有点烦人。有没有简单的方法可以删除它? 最佳答案 在“首选项 -> 包设置 ->
我在网上搜索,没有找到解释这个评论 block 用法的结果。因此,我希望有人能向我解释这种评论风格背后的原因。 /// Text goes here. 最佳答案 它们是 XML 文档注释。 http
这有充分的理由吗?这是一个蹩脚的问题,但我只是想知道是否有原因。 最佳答案 因为 specification允许/**/但不允许//:) 不过,严重的是,CSS 像对待所有其他空格一样对待换行符,并且
我有一个评论模型,我看过使用 @comment, :comment, comment 来引用 MVC 中的对象的示例。我怎么知道哪个是哪个?有区别吗? 最佳答案 @comment指 Rails Con
我有一些使用 Drupal 实现的网站。然而,尽管 Drupal 很酷,但我从未对它的编码感到满意,主要是因为它是在 PHP 中的,而且我想使用 python。我曾与 Django 调情,但我最近才发
似乎我仍然没有完全转变为 mac 用户(来自 Windows),再次遇到键盘快捷键问题: 在 phpstorm 中,下拉菜单中显示了以下“带有行注释的注释”的快捷方式: 现在,问题是,我的键盘上没有“
我正在按照 here 所述使用 fb:comments| . 评论工作正常,但我找不到在添加新评论时收到通知的方法。有没有办法轻松找到新评论(无需每次都访问我的 3000 篇文章)? 我知道 FB 对
我正在尝试创建一个功能,用户可以在其中使用 Ajax 创建对文章的评论。但是,我不明白为什么只有存在一个评论才能通过 ajax 成功呈现评论。评论提交到数据库,没有任何回滚。 如果我重新加载页面并创建
我正在使用 mongodb native 驱动器来获取查询结果的游标。 我正在使用一个“评论”字段,它基本上是一个字符串,下面是我正在使用的代码片段 let leve1_n = 'labreports
如果我将此URL放入浏览器中:。Https://www.facebook.com/plugins/comments.php?api_key=MYAPID。它会显示注释框,但不会显示任何评论。谁能告诉我
我想显示每个项目的评论数量和最后评论的日期。 SELECT item.*, count(comments.itemid) AS commentcount, comments.created A
这个问题在这里已经有了答案: What is the second parameter of NSLocalizedString()? (5 个答案) 关闭 6 年前。 我搜索并阅读了 NSLoca
我希望我的 Wordpress 博客中的字幕能够计算我的帖子在 Facebook 上的评论数。插入Facebook的代码后 ID); ?>"> comments 我意识到当我只有 1
我在我的项目中收到以下 TsLint 消息: TsLint: comment must start with lowercase letter 这背后有什么依据吗?我同意我在 TsLint 中遇到的大
我正在使用以下代码完成教程: New Comment @comment = Comment.new, :locals => { :button_name => "Create" } %>
环境 适用于macOS的Visual Studio代码1.18.0。 主题hedinne.popping-and-locking-vscode,由 hedinne 组成。 问题 当我覆盖/*> edi
我是一名优秀的程序员,十分优秀!