命令式 JS 到响应式 JS - "if statement" sparkAR

Imperative JS to Reactive JS - "if statement" sparkAR

我需要一些关于 Reactive JS 和 "if statement" 的帮助 我不知道如何在 Reactive JS 中实现一个简单的代码 在 Spark AR 中是这样的:

if( boolvalue=true)
 {
 vidTex.url = "https://yourvideo";
 }
 else 
 {
  vidTex.url = "";
 }

我找到了一段为 Spark Reactive JS 编写的代码,如下所示:

   vidTex.url = Reactive.val(""); // Stop
   vidTex.url = Reactive.val("https://yourvideo"); // Play

但是我不知道如何实现if bool true?

帮助

你可以使用 ternary conditional operator

vidTex.url = Reactive.val(boolvalue ? "https://yourvideo" : "")