在 App Inventor 2 中尝试将句子转换为 Pig Latin 时出错

Error when trying to convert sentence to Pig Latin in App Inventor 2

我正在尝试为我的 CSP 创建一个基本句子 - 猪拉丁语翻译 class。

我和我的老师都检查过这个并同意它看起来应该有效,但我们都可能遗漏了一些简单的东西。

这可能是 AI 本身的问题,但我不会跳到那个作为第一个结论。

有多个错误,每个错误都与 select、删除或替换列表项有关,例如

The operation select list item cannot accept the arguments: , [(The quick brown fox jumped over the lazy dog)], [The]

感谢您的帮助!

The operation select list item cannot accept the arguments: , [(The quick brown fox jumped over the lazy dog)], [The]

错误消息试图告诉您,select 列表项 块需要一个索引作为第二个参数,但得到了单词“The" 而不是......发生这种情况,因为局部变量 item 是你句子的单个单词,而不是索引。