Uno.Lottie WebAssembly 中的未捕获类型 JavaScript 错误

Uncaught Type JavaScript Error In Uno.Lottie WebAssembly

我的页面上有一个用于播放 Lottie 的 AnimatedVisualPlayer:

<winui:AnimatedVisualPlayer
    x:Name="player"
    AutoPlay="true" Width="150" Height ="150" PlaybackRate="1.5">

    <lottie:LottieVisualSource
        UriSource="ms-appx:///Lottie/waiter.json" />
</winui:AnimatedVisualPlayer>

我安装了这些软件包:

我也做过:

On WASM, iOS and macOS, you can put the Lottie .json files directly in a folder of the shared project (for example "Lottie/myanimation.json") and set their Build action as Content.

UWP 可以无缝播放 Lottie:

然而,WASM 无法播放 Lottie 并出现此错误:

Nuget 包版本:

Nuget 包:

包版本:

我该如何解决这个问题?谢谢。

这是 Uno-Wasm 的 Lottie 插件中的一个错误,这是由于您使用 PlaybackRate 而您 运行 在非英语环境中使用使用逗号而不是点对小数点进行序列化的区域性。

This PR #3257 应该可以解决问题。

更新:此 PR 已合并,修复将在 Uno v3.0.0-dev.135.

中可用