过去几个小时我试图解决如何更新ObservableCollection中现有值的问题。我将在这里解释一些我想要做的事情。
在Xamarin.Froms ListView中加载的ObservableCollection。
ObservableCollection<SearchResult> _searchResults;
public ObservableCollection<SearchResult> SearchResults
{
get { return _searchResults; }
private set { this.RaiseAndSetIfChanged(ref _searchResults, value); }
}
ReactiveCommand<List<SearchResult>> _search;
public ReactiveCommand<List<SearchResult>> Search
{
get { return _search; }
private set { this.RaiseAndSetIfChanged(ref _search, value); }
}
这是在ObservableCollection中加载的ReactiveObject。首次加载列表时,AvaText和PerText为空,因为数据尚未存在。所以我想迭代列表并使用AvaText和PerText的正确值更新每个SearchObject,并获取我需要使用另一个API调用更新的数据。最好的方法是什么?任何人都可以帮助我向我展示正确的方向吗?非常感谢:)
public class SearchResult : ReactiveObject
{
string _displayText;
public string DisplayText
{
get { return _displayText; }
set { this.RaiseAndSetIfChanged(ref _displayText, value); }
}
string _IdText;
public string IdText
{
get { return _IdText; }
set { this.RaiseAndSetIfChanged(ref _IdText, value); }
}
string _avaText;
public string AvaText
{
get { return _avaText; }
set { this.RaiseAndSetIfChanged(ref _avaText, value); }
}
string _perText;
public string PerText
{
get { return _perText; }
set { this.RaiseAndSetIfChanged(ref _perText, value); }
}
}
我查看了ReactiveUI的文档,我认为我应该用.ToProperty做些什么?
感谢您的阅读。
亲切的问候,
费尔南多
答案 0 :(得分:1)
我刚注意到你的Search ReactiveCommand。这可能还需要改变。请看下面的LoadStatsImp函数,了解如何进行SearchImp功能。也许是这样的。
ObservableAsPropertyHelper<ObservableCollection<SearchResult>> _searchResults;
public ObservableCollection<SearchResult> SearchResults => _searchResults;
public ReactiveCommand<ObservableCollection<SearchResult>> Search { get; protected set; }
public TheClassTheseAreIn
{
Search = ReactiveCommand.CreateAsyncTask(parameter => SearchImp(this.SearchCriteria));
_searchResults = Search.ToProperty(this, x => x.SearchResults, new ObservableCollection<SearchResult>);
}
我相信可以从SearchResult类调用您对AvaText和PerText的更新。
我假设AvaText和PerText是只读的,在这种情况下,我会将ObservableAsPropertyHelper用于AvaText和PerText,而不是现在使用的RaiseAndSetIfChanged实现。 SearchResult类将查找要更改的IdText,然后它将调用LoadStats ReactiveCommand。 LoadStats使用ToProperty更新AvaText和PerText。
大部分内容来自example code at docs.reactiveui.net
public class SearchResult : ReactiveObject
{
string _displayText;
public string DisplayText
{
get { return _displayText; }
set { this.RaiseAndSetIfChanged(ref _displayText, value); }
}
string _IdText;
public string IdText
{
get { return _IdText; }
set { this.RaiseAndSetIfChanged(ref _IdText, value); }
}
ObservableAsPropertyHelper<string> _avaText;
public string AvaText => _avaText.Value;
ObservableAsPropertyHelper<string> _perText;
public string PerText => _perText.Value;
public ReactiveCommand<StatsClass> LoadStats { get; protected set; }
public ModelTile ()
{
LoadStats = ReactiveCommand.CreateAsyncTask(parameter => LoadStatsImp(this.IdText));
LoadStats.ThrownExceptions
.SubscribeOn(RxApp.MainThreadScheduler)
.Subscribe(ex => UserError.Throw("Couldn't load stats", ex));
_avaText= LoadStats.Select(stats => stats.Ava).ToProperty(this, x => x.AvaText, string.Empty);
_perText= LoadStats.Select(stats => stats.Per).ToProperty(this, x => x.PerText, string.Empty);
this.WhenAnyValue(x => x.IdText)
.Where(x => !String.IsNullOrWhiteSpace(x))
.InvokeCommand(LoadStats);
}
public static async Task<StatsClass> LoadStatsImp(string id)
{
var stats = await DownloadRss(id);
System.Diagnostics.Debug.WriteLine($"number of stats: {stats}");
return stats;
}
}