1
js框架。我試圖將數據從POST請求保存到數據庫Total.js將數據保存到數據庫
模型(article.js):
NEWSCHEMA('Article').make(function(schema) {
schema.define('title', 'String', true); // title of article
schema.define('about', 'String', true); // about
schema.define('text', 'String', true); // text
schema.define('date', 'Date'); // created date
schema.setSave(function(error , model, options, callback){
var sql = DB(error);
sql.insert('articles').make(function(builder) {
builder.set('title', model.title);
builder.set('about', model.about);
builder.set('text', model.text);
builder.set('date', F.datetime);
});
sql.exec(n => callback(SUCCESS(true)));
});
});
和我有控制器(default.js):
exports.install = function() {
F.route('/add_article', add_article, ['authorize', '*Article', 'post']);
};
function add_article(){
var self = this;
self.body.$save(self, self.callback());
}
但我獲取錯誤:
======= default ---> TypeError: sql.insert(...).make is not a function (http://127.0.0.1:8000/add_article?ts=1489500750601)TypeError: sql.insert(...).make is not a function
請幫忙謝謝。
你已經安裝並initalized SQL代理? –