我在CREATE FUNCTION createXML() RETURNS trigger AS $createXML$
BEGIN
if new.modified_dttm is null then
COPY(select query_to_xml('select * from table where modified_dttm is null',true,true,'')) to 'c:/Program Files/PostgreSQL/9.6/data/xml123.xml';
RETURN new;
END IF;
END;
$createXML$
LANGUAGE plpgsql;
中有ContentView
。我从CarouselPage
导航到ConentPage
。更新ContentView
并返回ContentPage
。
现在,在此注释中,我的ContentView
未获得更新。
此外,如果我在ContentView
的条目中更改文字并转到ContentView
并返回,则我的条目更改将被删除。
那么,有没有任何机制可以让我回到ContentPage
时得到刷新?
我尝试在ContentView
中使用OnAppearing()
方法,但它显示的错误类似于ContentView
。
谢谢。 :)
答案 0 :(得分:0)
在内部运行代码
Device.BeginInvokeOnMainThread(async () =>
{
///Code to update view here
});