Environment: express 4, jquery, krakenjs, font-awesome
In controllers/products/index.js
module.exports = function (router) {
router.post('/add',function(req,res){
// do something
});
};
In the html file, users click the icon and add the products into the cart
{?products}
{#products}
<ul id="{.id}">
<li class="add"><i class="fa fa-plus"></i></li>
</ul>
{/products}
{/products}
For each product, the following script is to do the ajax post to backend.
$('.add').click(function(e){
var _id = this.parentElement.id;
$.ajax({
url: "/products/add",
type: 'POST',
contentType: 'application/json',
dataType: 'json',
data: JSON.stringify({
id: _id
})
});
});
The server then responds 500 (Internal Server Error) and states 'Error: CSRF token mismatch'. Do I need to insert the csrf token in ajax post or eliminate the token validation when doing ajax call without a form submission.