We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我在导入java.util.Base64时提示无法导入 "Base64", 因同名属性已被定义,翻了下文档,原来新增了Base64模块,但仔细一看调用时是小写的base64,哪来的冲突。于是尝试Base64.encode("xxx"),提示找不到方法 android.util.Base64.encode(string)。 所以这是全局导入了android.util.Base64,这是bug还是设计?
The text was updated successfully, but these errors were encountered:
在这能看到全局的部分属性
Sorry, something went wrong.
为了方便直接使用部分常用的类, AutoJs6 陆续将一些类全局化.
但 Rhino 默认不允许在全局变量存在的情况下进行 importClass, 针对上述问题目前有以下解决方案.
Sent from my XQ-DQ72 using FastHub
No branches or pull requests
我在导入java.util.Base64时提示无法导入 "Base64", 因同名属性已被定义,翻了下文档,原来新增了Base64模块,但仔细一看调用时是小写的base64,哪来的冲突。于是尝试Base64.encode("xxx"),提示找不到方法 android.util.Base64.encode(string)。
所以这是全局导入了android.util.Base64,这是bug还是设计?
The text was updated successfully, but these errors were encountered: