我无法在localhost上为Android模拟器使用类型提供程序.
当使用F#的Type Provider时,这对我不起作用,因为TypeProvider在设计时建立连接.
当我使用localhost时,Type Provider很高兴
[] let JsonPath = "http://localhost:48213/api/cars" type Repository = JsonProvider
但是,我尝试使用localhost路径时收到连接被拒绝.有关此错误的详细信息,请访问此处.
因此,我认为解决方案是使用替代IP地址:
10.0.2.2
当我使用10.0.2.2时,类型提供程序不满意
在IP地址上替换"localhost"和"10.0.2.2"会导致源自TypeProvider的编译错误未建立与更新的IP地址的连接.
当我尝试使用"10.0.2.2"作为替代IP(AKA:变通方法)时,以下代码将无法编译,这是模拟器工作所需的IP:
[] (* "10.0.2.2" is the workaround IP for local host *) let JsonPath = "http://10.0.2.2:48213/api/cars" type Repository = JsonProvider type Car = { Make:string ; Model:string } let getCars() = Repository.Load JsonPath |> Array.toSeq |> Seq.map(fun x -> { Make=x.Make ; Model=x.Model })
总之,如何通过本地运行的WebAPI服务访问文件,并在模拟器上执行类型提供程序时仍然保持类型提供程序的快乐?
您在创建时提供的静态参数JsonProvider
纯粹是为了设计时间,以便为您生成类型.当你调用Repositor.Load
它时,它将是你用于运行时的uri.它们应该分开处理,如下所示:
[] let DevelopmentJsonPath = "http://localhost:48213/api/cars" type Repository = JsonProvider type Car = { Make:string ; Model:string } let runtimeUri = "http://production.mycompany.com/api/cars" let getCars() = Repository.Load runtimeUri |> Array.toSeq |> Seq.map(fun x -> { Make=x.Make ; Model=x.Model })