You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zx/chazhao/chazhao.js

17 lines
331 B

6 years ago
Page({
shujichzhao: function (e) {
wx.request({
url: 'http://localhost:9527/zxbook/find1',
data: {
'search': e.detail.value.search,
},
header: {
"Content-Type": "application/x-www-form-urlencoded"
},
6 years ago
methods: {
method: "POST",
}
})
}
6 years ago
})