在我的烧瓶应用程序中,每次尝试更改名称属性时,我都会尝试生成块。因此,为了实现此行为,我使用了sqlalchemy信号。
before_insert
before_update
处理程序函数可以工作,但是before_update
处理程序函数无法更新目标子段值,即使用户更改了name属性。 svss-sala-district
svss-sala
函数的输出看起来像
@Override
public void onResume() {
super.onResume();
//update whatever your list
adapter.notifyDataSetChanged();
}
,似乎对特定字段target.slug的更改未提交给数据库。注意,我正在使用flask-admin更新学区行,并且所有其他字段更改都反映在数据库中。