我试图在intellij上运行基于javaFX和jfoenix UI库的演示应用程序,我有jdk1.8.0_131和jre1.8.0_131版本,但我无法运行,我做错了什么? 这个导入引发了我的错误:
try {
models.TANServer.create(...).then(...).catch(...);
catch (e) {
// A synchronous exception happened here
}
// Alternatively (and much better IMO):
Promise.resolve().then(() => {
// Any synchronous errors here will fail the promise chain
// triggering the .catch
return models.TANServer.create(...);
}).then(server => {
// Use server here
}).catch(reason => {
// All errors show up here
});
我已经设置了JAVA_HOME和gradle环境变量,我已经使用gradlew构建了演示
我需要另一个版本的jdk和jre来运行这个库吗?
答案 0 :(得分:2)
转到项目的根文件夹 打开“build.gradle”(不是文件夹内的其他build.gradle) 注释掉代码: mave {url'http://sevntu-checkstyle.github.com/sevntu.checkstyle/maven2',
现在应该是这样的:
//maven { url 'http://sevntu-checkstyle.github.com/sevntu.checkstyle/'}
然后运行gradlew build