在ViewModel构造函数中添加Api接口,导航停止工作

时间:2018-11-30 07:04:12

标签: c# xamarin xamarin.forms prism

我正在将VS 17用于Xamarin表单。我已经在Xamarin.Forms应用程序中设置了Prism,我刚刚添加了对我的Api接口的引用(在ViewModel Constructor中),它使该应用程序停止导航到第二页。为了传递参数等,我需要这样做。我遵循了本指南:

https://blog.qmatteoq.com/prism-for-xamarin-forms-basic-navigation-and-dependency-injection-part-2/

这是我使导航停止工作的步骤:

private readonly IService _Service;
private ObservableCollection<TodoItem> _topSeries;

public ObservableCollection<TodoItem> TopSeries
{
    get { return _topSeries; }
    set { SetProperty(ref _topSeries, value); }
}

这是构造函数:

public SecondPageViewModel(IService Service, INavigationService navigationService)   
{
    _Service = Service;
    _navigationService = navigationService;
}

由于我添加了上面的代码,所以我什至无法到达上面的视图模型。我试图在DelegateCommand上放置断点(在第一个ViewModel上),但是它在InitializeComponent()之后停止;然后什么也没有发生。没有错误讯息!谢谢!

更新:

获取数据的我的Service类:

public class Service : IService
{

    public List<TodoItem> TodoList { get; private set; }
    HttpClient client;

    Service()
    {
        client = new HttpClient();
        client.MaxResponseContentBufferSize = 256000;
    }

    public async Task<List<TodoItem>> DataAsync()
    {

        TodoList = new List<TodoItem>();

        var uri = new Uri(string.Format(Constants.RestUrl, string.Empty));

        try
        {
            var response = await client.GetAsync(uri);
            if (response.IsSuccessStatusCode)
            {
                var content = await response.Content.ReadAsStringAsync();
                TodoList = JsonConvert.DeserializeObject<List<TodoItem>>(content);
                Debug.WriteLine(content);
            }
        }
        catch (Exception ex)
        {
            Debug.WriteLine(@"ERROR {0}", ex.Message);
        }

        return TodoList;
    }
}

这是我的App.Xaml.cs

protected override void RegisterTypes(IContainerRegistry containerRegistry)
{
    containerRegistry.RegisterForNavigation<NavigationPage>();
    containerRegistry.RegisterForNavigation<View.MainPage, MainPageViewModel>();
    containerRegistry.RegisterForNavigation<View.SecondPage, SecondPageViewModel>();
    containerRegistry.Register<IService, Service>();
}

我的界面:

public interface IService
{
    Task<List<TodoItem>> DataAsync();
}

这就是我的导航方式(从列表视图中单击):

private EventItem _selectedEvent { get; set; }
public EventItem SelectedEvent
{
    get { return _selectedEvent; }  
    set
    {
        if (_selectedEvent != value)
        {
            if (Device.RuntimePlatform == Device.iOS)
            {
                _selectedEvent = null;
            }
            else
            {
                _selectedEvent = value;
            }
            NavigationParameters navParams = new NavigationParameters();
            navParams.Add("PassedValue", _todoItem.name);

            _navigationService.NavigateAsync("SecondPage", navParams);
        }
    }
}

编辑:

当我在没有ApiService代码的情况下进行调试时,该命令会将我带到新的ViewModel中的新的新构造函数。有了代码,它就无法到达构造函数。

1 个答案:

答案 0 :(得分:2)

根据您的代码,您已这样声明了构造函数:

Service()
{
    // ...
}

您未设置访问修饰符,因此默认修饰符为internal。这是定义:

  

内部类型或成员只能在同一文件中访问   组装。

您很有可能在另一个程序集中声明了Service.cs,而Prism无法访问其构造函数。 您的导航无法正常运行,因为依赖项注入失败。要解决此问题,只需将访问修饰符更改为public

public Service()
{
    // ...
}