我正在使用引导程序标签输入https://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/并成功实现。我只想将其设置为 必填字段 ,以便每个用户提交带有技术标签的表单。
onDeleteClick(item) {
const menuCopy = JSON.parse(JSON.stringify(this.menu));
const index = menuCopy.indexOf(item);
if (index !== -1) {
menuCopy.splice(index, 1);
} else {
menuCopy.map((el) => {
if (el.children.length) {
el.children.map((child) => {
if (child.Id === item.Id) {
console.log(child);
}
});
}
});
}
this.setMenu(menuCopy);
}
这是此屏幕截图。
答案 0 :(得分:0)
检查表单提交的回报率
"date": 1576312634,
"reply_to_message": {
"message_id": 130,
"from": {
"id": 156878147,
"is_bot": false,
"first_name": "Carlos F",
"username": "@Carlos****",
"language_code": "en"
},
Javascript / Jquery代码
<form onsubmit="return checktag()">