gpt4 book ai didi

javascript - 使用 lodash 在整数数组中查找字符串元素包括不工作

转载 作者:搜寻专家 更新时间:2023-10-30 22:35:50 25 4
gpt4 key购买 nike

这是我的代码,我正在使用 vuejs:

pins: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0], //my data

isThisPin(pin){
return _.includes(this.pins, pin);
}

console.log(this.isThisPin('X')); //it returns true

基本上,我试图猜测所选引脚是否不包含在引脚中,我希望将其返回为 false,但它只是一直返回为 true。

我是不是用错了函数?

最佳答案

如果您的 pins 数组就这么简单,您不需要任何东西,只需要普通的 JavaScript。

new Vue({
el: "#app",
data: {
pins: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
pin: '',
result: ''
},
methods: {
isThisPin() {
if (this.pin) {
this.result = this.pins.includes(Number(this.pin))
} else {
this.result = ''
}
}
}
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
<label>IS THIS PIN: <input type="number" v-model="pin" @input="isThisPin"></label>
<br /> RESULT: {{result}}
</div>

关于javascript - 使用 lodash 在整数数组中查找字符串元素包括不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58181306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com