我想为每个ajax请求更新图,因此有一个update()方法,如SO中所述,但它不起作用。
我从服务器收到ajax响应,我想用每个ajax请求更新图表中的数据。
public void RemoveError(string PropertyName, bool Notify = true)
{
if (ErrorList.ContainsKey(PropertyName))
{
ErrorList.Remove(PropertyName);
HasErrors = ErrorList.Count > 0;
}
if (Notify) ErrorsChanged?.Invoke(this, new DataErrorsChangedEventArgs(PropertyName));
}
public void ClearErrors()
{
var removalList = new Dictionary<string, string>(ErrorList);
ErrorList.Clear();
HasErrors = false;
foreach (var propertyName in removalList.Keys) ErrorsChanged?.Invoke(this, new DataErrorsChangedEventArgs(propertyName));
}