这几天我一直在学习使用Angular 6和NodeJS(使用ExpressJS).为此,我决定使用Angular 6创建一个前端(其中包含一个表单),旨在通过使用我使用NodeJS创建的API来回传递信息到我的PHPMyAdmin数据库.
正如您在标题中看到的那样,当我尝试提交表单信息时出现以下错误:
“Unhandled rejection TypeError: callback is not a function“
我用于后期操作的代码来自另一个功能相似的API,数据库接收到question_id和user_id,但不会注册问题答案(这是最终目标).
如果没有更多的东西,这里是获取和发布的代码:
const config = require('../config/config');
const knex = config.db.knex;
const async = require('async');
class TestModel {
getQuestions(callback) {
knex('question')
.select('id','libelle')
.orderBy('id','asc')
.then((data) => {
callback(data);
});
}
addResponse(reponse,callback) {
knex('reponse')
.insert({
id_user : 1,id_question : reponse.id,libelle: reponse.answer,}).then((data) => {
callback(data);
});
}
}
module.exports = new TestModel();
其余部分如下:
app.post('/quiz',function(req,res,next){
var answers = req.body;
console.log(answers)
for(var i = 0; i
仅供参考,“响应”表示响应,“libelle”表示标签.
在此先感谢您的帮助!
最佳答案
正确的语法是
原文链接:https://www.f2er.com/js/429268.html Test.addResponse(obj,(result) => {
});
它的工作原理: