wx.request({
header: {
'content-type': 'application/json'
},
method:'POST',
data: {
keyword: '关键字'
success: function (res) {
console.log(res.data);
}
});