提交后刷新对话框及其内容

时间:2019-08-15 13:12:36

标签: javascript vue.js vuetify.js

我正在使用@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_level_one); ListView levelOneListView = findViewById(R.id.levelOneListView); String[] easyList = new String[]{ "Daisy", "Dandelion", "Grass", "Rock", "Tree", "Postbox" }; ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String> (this, android.R.layout.simple_list_item_1, easyList); levelOneListView.setAdapter(arrayAdapter); levelOneListView.notifyDatasetChanged() } 向数据库添加一些内容。使用def ant = new AntBuilder() def file = new File($Workspace, "filename") ant.replace(file: file, token: “text1”, value: “${text2}”) 验证字段,如下所示:

模板:

v-dialog

脚本:

:rules

,但是在提交表单并再次将其重新打开之后,inputRules仍在验证:

enter image description here

如何再次刷新表单内容或对话框?

2 个答案:

答案 0 :(得分:0)

提交表单后,尝试将success道具(API)设置为true的选项。或者像解决方法一样,在验证器(inputRules)中使用一些标志,该标志将知道表单是否已提交

答案 1 :(得分:0)

使用refs属性分配整个表单引用。然后在提交表单后清除内容

this.$refs.resetValidation()