Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想问一下如何同时检索图像,例如如果我在点击完成后输入字母 abc,将出现与我输入的内容相对应的 3 张图像
你的问题有点不清楚,但如果我理解得很好,你想为作为输入输入的每个字符显示一个图像。
因此,您保留一个哈希图,其中键是字符,值是您要为该字符显示的图像。将输入分解为单独的字符后,您会找到要使用该variable_name.get(Object key)方法显示的单独图像,因此在这种情况下,您将一个接一个地传递单独的字符作为参数。检索图像后显示它们。
variable_name.get(Object key)