我正在处理一项JavaScript任务,要求我在Node.JS中使用prompt-synch。它工作正常,直到我尝试在提示符中使用换行符\n
,此时每个字符或退格键都会导致提示重复。
如果没有此问题,我该怎么做才能让用户输入显示在新行上(本练习的要求)?
问题代码:
if (guess < answer) {
guess = prompt("Too low!\n> ");
} else if (guess > answer) {
guess = prompt("Too high!\n> ");
}
答案 0 :(得分:0)
您可以尝试这样做。
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
如果这不起作用,则可能是您自己代码的另一部分问题。如果确实如此,则if (guess < answer) {
console.log("Too low!");
guess = prompt("> ");
} else if (guess > answer) {
console.log("Too high!");
guess = prompt("> ");
}
模块可能存在问题,如果您认为这是一个有效的解决方法。