我目前正試圖從特定路由規則的表單中捕獲張貼的值。 因爲所有關於此的其他SO帖子都不起作用,我想再次提問。您是否已經在您的項目中進行了整理和實施? [email protected]有解決方案嗎?鐵路路由器解析發佈值
this.request.body
以上航線規則內的代碼始終返回undefined。
Router.route('/register', function(){
console.log(JSON.stringify(this.request.body));
//this.render('test',{data:{data:this.request.body.username}})
});
//SERVER ONLY
if (Meteor.isServer) {
Meteor.methods({
'addSong': function(songName) {
var userId = Meteor.userId()
songs.insert({
userId: userId,
name: songName
})
}
})
Router.onBeforeAction(Iron.Router.bodyParser.urlencoded({
extended: true
}));
}
我想這是服務器端可以告訴我們一些代碼嗎? –