小程序
小游戏
企业微信
微信支付
扫描小程序码分享
textarea页面能显示字但是value却没有
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
v-model="text" 绑定的是这个 text
你打印 text 看看有没有结果
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你这个不是原生小程序开发吧,你把v-model="text" 换成 :value="text"
<view class="placeholder" v-show="!input.focus && !input.insert && !text.length">
<view>使用步骤</view>
<view>1</view>
<view>2</view>
<view>3:</view>
<view>4:</view>
<view>5:</view>
</view>
<textarea class="textarea" v-model="text" placeholder="" :focus="autoFocus" @focus="onFocus"
@blur="onBlur" :maxlength="300" :cursor="input.cursor" />
<view class="tips" @click.native.stop>字数 {{text.length}}/300</view>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
v-model="text" 绑定的是这个 text
你打印 text 看看有没有结果
@blur="onBlur" :maxlength="300" :cursor="input.cursor" @input="inputHandler" /> const inputHandler = (event) => {
console.log("输入", event.detail)
text.value = event.detail.value
if (text.value > 300) {
text.value = text.value.slice(0, 300)
}
}这段代码有问题吗
@blur="onBlur" :maxlength="300" :cursor="input.cursor" @input="inputHandler" /> const inputHandler = (event) => {
console.log("输入", event.detail)
text.value = event.detail.value
if (text.value > 300) {
text.value = text.value.slice(0, 300)
}
}这段代码有问题吗
你这个不是原生小程序开发吧,你把v-model="text" 换成 :value="text"
@blur="onBlur" :maxlength="300" :cursor="input.cursor" @input="inputHandler" /> const inputHandler = (event) => {
console.log("输入", event.detail)
text.value = event.detail.value
if (text.value > 300) {
text.value = text.value.slice(0, 300)
}
}这段代码有问题吗
<view class="placeholder" v-show="!input.focus && !input.insert && !text.length">
<view>使用步骤</view>
<view>1</view>
<view>2</view>
<view>3:</view>
<view>4:</view>
<view>5:</view>
</view>
<textarea class="textarea" v-model="text" placeholder="" :focus="autoFocus" @focus="onFocus"
@blur="onBlur" :maxlength="300" :cursor="input.cursor" />
<view class="tips" @click.native.stop>字数 {{text.length}}/300</view>