- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑
显然这是一个错误。我所做的报告可以找到here 。正如 @James_D 指出的,这不是绑定(bind)的问题,但在将文本设置为非空值后将其设置为 null 就足够了。
我在使用 JavaFX TextFormatter
时遇到问题。我想将文本字段中的文本长度限制为 10 个字符,但我发现如果文本属性绑定(bind)到非空值,然后取消绑定(bind)并反弹到空值,则文本格式化程序会引发异常:
java.lang.IllegalArgumentException: The start must be <= the end
在调用TextFormatter.Change#getControlNewText
时,这很奇怪,因为如果有的话,我会期望出现空引用异常。
我附上了一个简单的代码,作为展示此问题的完整示例。如果我做错了什么请告诉我
package sample;
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class Main extends Application {
private Model m;
private int num = 0;
@Override
public void start(Stage primaryStage) throws Exception {
TextField tf = new TextField();
tf.setTextFormatter(new TextFormatter<>(change -> change.getControlNewText().length() > 10 ? null : change));
Button b = new Button("Click!");
b.setOnAction(ev -> {
if (m != null) {
tf.textProperty().unbindBidirectional(m.nameProperty());
}
m = new Model();
if (num % 2 == 0) {
System.out.println("Setting foo");
m.setName("foo");
}
num++;
tf.textProperty().bindBidirectional(m.nameProperty());
}
);
VBox vb = new VBox(tf, b);
primaryStage.setScene(new Scene(vb));
primaryStage.show();
}
public class Model {
private SimpleStringProperty name = new SimpleStringProperty(this, "name");
public StringProperty nameProperty() {
return name;
}
public String getName() {
return name.get();
}
public void setName(String name) {
this.name.set(name);
}
}
public static void main(String[] args) {
launch(args);
}
}
在此代码中,有一个带有 TextFormatter
的 TextField
,它拒绝所有更改,从而导致长度>10 的字符串。单击按钮时,将创建一个新的 Model
对象,并且它的 name
属性绑定(bind)到 TextField
的 text 属性 - 而不是在旧的模型
未绑定(bind)。该模型交替使用“foo”作为名称进行初始化,或者不使用名称进行初始化(即名称保持为空)。
第一次单击按钮时,您应该看到文本更改为“foo”,下次单击按钮时会引发异常。
最佳答案
这看起来像是一个错误(文本格式化程序的过滤器似乎无法正确处理设置为 null
的文本)。一种可能的解决方法是绑定(bind)文本格式化程序的 value 属性,而不是文本字段的 text 属性:
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class Main extends Application {
private Model m;
private int num = 0;
@Override
public void start(Stage primaryStage) throws Exception {
TextField tf = new TextField();
TextFormatter<String> textFormatter = new TextFormatter<>(
TextFormatter.IDENTITY_STRING_CONVERTER, "", change ->
change.getControlNewText().length() > 10 ? null : change);
tf.setTextFormatter(textFormatter);
Button b = new Button("Click!");
b.setOnAction(ev -> {
if (m != null) {
// tf.textProperty().unbindBidirectional(m.nameProperty());
textFormatter.valueProperty().unbindBidirectional(m.nameProperty());
}
m = new Model();
if (num % 2 == 0) {
System.out.println("Setting foo");
m.setName("foo");
}
num++;
// tf.textProperty().bindBidirectional(m.nameProperty());
textFormatter.valueProperty().bindBidirectional(m.nameProperty());
}
);
VBox vb = new VBox(tf, b);
primaryStage.setScene(new Scene(vb));
primaryStage.show();
}
public class Model {
private SimpleStringProperty name = new SimpleStringProperty(this, "name", "");
public StringProperty nameProperty() {
return name;
}
public String getName() {
return name.get();
}
public void setName(String name) {
this.name.set(name);
}
}
public static void main(String[] args) {
launch(args);
}
}
关于java - TextFormatter 在绑定(bind)(双向)到空字符串时抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34865132/
我正在尝试创建一个程序,其中字符串的前三个字符重复给定次数,如下所示: foo('Chocolate', 3) # => 'ChoChoCho' foo('Abc', 3) # => 'AbcAbcA
我有以下字符串: std::string str = "Mode:AAA:val:101:id:A1"; 我想分离一个位于 "val:" 和 ":id" 之间的子字符串,这是我的方法: std::st
DNA 字符串可以是任意长度,包含 5 个字母(A、T、G、C、N)的任意组合。 压缩包含 5 个字母(A、T、G、C、N)的 DNA 字母串的有效方法是什么?不是考虑每个字母表 3 位,我们可以使用
是否有一种使用 levenstein 距离将一个特定字符串与第二个较长字符串中的任何区域进行匹配的好方法? 例子: str1='aaaaa' str2='bbbbbbaabaabbbb' if str
使用 OAuth 并使用以下函数使用我们称为“foo”(实际上是 OAuth token )的字符串加密 key public function encrypt( $text ) { // a
我是一名优秀的程序员,十分优秀!