gpt4 book ai didi

.net - 为什么 ObservableForProperty 上的 ReactiveUI 的 ToProperty 会导致 F# 中的 FailInit

转载 作者:行者123 更新时间:2023-12-02 12:19:39 34 4
gpt4 key购买 nike

在 ReactiveUI 5.2.0 和 F# 3.1 中,以下 F# 代码在构造对象时(从 C# WPF 应用程序)会导致 InvalidOperationException

该消息是“对象或值的初始化导致对象或值在完全初始化之前被递归访问”,并且它发生在读取传递到 ObservableForProperty 的属性期间。 (尽管默认是跳过初始值)。

type MyVM() as this =
inherit ReactiveObject()

let source : obj = obj()

let ofp =
this.ObservableForProperty([|"Source"|])
.Select(fun x -> x.Value)
.ToProperty(this, (fun y -> y.Result), obj()) // Exception when executing this

member this.Result with get() = ofp.Value
member this.Source with get() = source // Exception here "The initialization of an object or value resulted in an object or value being accessed recursively before it was fully initialized"

编辑添加:问题似乎是 ToProperty正在导致ObservableForProperty在订阅时查询“Source”属性,并且 F# 在查询属性之前检查构造函数是否已完成。

更多信息:ReactiveNotifyPropertyChangedMixin.nestedObservedChangeskicker 的组合和fillInValue导致在通过 PropertyChanged 通知任何更改之前查询该值

最佳答案

从 ReactiveUI 版本 5.4.0 开始,ObservableForProperty 有一个新的重载,它需要一个简单的非链式属性来监视。

如果您添加以下扩展方法:

let toPropName(query : Expr) = 
match query with
| PropertyGet(a, b, list) -> b.Name
| _ -> ""

[<Extension>]
type ReactiveObjectExtender =
[<Extension>]
static member ObservableForProperty<'u, 't when 'u :> ReactiveObject>(this: 'u, expr : Expr<'t>, ?beforeChange, ?skipInitial) =
let propertyName = toPropName expr
this.ObservableForProperty<'u, 't>(propertyName, defaultArg beforeChange false, defaultArg skipInitial true)

然后您可以使用以下语法观察属性更改:

this.ObservableForProperty(<@ this.MyProperty @>)

关于.net - 为什么 ObservableForProperty 上的 ReactiveUI 的 ToProperty 会导致 F# 中的 FailInit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19958446/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com