我有一个Rails应用程序,其中使用Redactor进行富文本输入。表单放置在Bootstrap模式中。我想在用户键入时进行验证(状态),如果该字段为空,则显示验证错误。我将BootstrapValidator用于验证部分。我目前未收到redactor
文本区域的任何验证消息。
代码的相关部分如下所示:
= form_for idea, remote: remote, html: {role: :form, "data-model" => 'idea', multipart: true} do |f|
# This field / validation works
.form-group
= f.label :title, "Title", :class => "required"
= f.text_field :title, :class => "form-control"
# This does not
.form-group
= f.label :description, :class => "required"
= f.text_area :description, :class => "form-control big-text-area redactor"
Javascript如下所示:
:javascript
$('#new_idea').bootstrapValidator({
message: 'This value is not valid',
feedbackIcons: {
valid: 'fa fa-check-square',
invalid: 'fa fa-warning',
validating: 'fa fa-circle-o-notch spin'
},
fields: {
"idea[title]": {
validators: {
notEmpty: {
message: 'The title is required'
}
}
},
"idea[description]": {
validators: {
callback: {
message: 'The idea description is required',
callback: function(value, validator) {
# NOTE: This part of the code never get called
var code = $('[name="idea[description]"]').code();
return (code !== '' && code !== '<p><br></p>');
}
}
}
}
}
})
$('.redactor').redactor({
keyupCallback: function (e) {
validateEditor();
}
});
function validateEditor() {
$('#new_idea').bootstrapValidator('revalidateField', "idea[description]");
};
关于如何使验证生效的任何想法?
最佳答案
我在使用Redactor时遇到了类似的问题,因此这可能会有所帮助。就我而言,我在Redactor绑定到的文本区域上有一个更改侦听器(一种类似于我认为Bootstrap Validator正在执行的方法),但是问题是Redactor在原始文本区域上吃了更改事件。为了解决这个问题,我在初始化Redactor插件时实现了以下内容。
var $mytextarea = $('selector-for-textarea');
$mytextarea.redactor({
changeCallback: function( html ) {
$mytextarea.trigger( 'change' );
}
});
希望这会有所帮助,欢呼。