目前,OctoberCMS仅显示每种类型的第一个flash message(成功,错误等)。在github中也有一个issue。
我需要显示所有消息。一个非常简单的用例是删除列表中的记录。如果某些记录未被删除,则应显示有关它们的错误消息以及成功消息,说明哪些记录已成功删除。
有人可以针对此问题提出解决方法,以便能够显示多条消息吗?
答案 0 :(得分:0)
一种解决方案是通过覆盖pub fn create_statement(cypher: &str, params: &HashMap<&str, &str>) -> rusted_cypher::Statement {
let mut statement = rusted_cypher::Statement::new(cypher);
for (field, value) in params.iter() {
statement.with_param(field.to_owned(), value.to_owned());
}
return statement;
}
中的defalt布局来替换原生通知功能(使用Noty)
error[E0382]: use of moved value: statement