<input type="text" placeholder="写一条自己的动态吧~" name="search" value="" placeholder-class="plac" bindinput="inputValue" />
</view>
data: {
inputValue: "",
}
/**输入函数 */
inputValue: function (event) {
this.setData({
inputValue: event.detail.value
})
console.log(this.data)
console.log(event.detail.value)
},