所以我用它在某些管理字段中创建默认文本,但在尝试更改"示例文本"时,保存后它不会更改。实际文本在网站中发生了变化,但在管理员中保持不变:
$builder
->add('epilogue', TextareaType::class, array(
'data' => '<p>Example text</p>'
))
对于要修改的占位符,最佳方法是什么?
答案 0 :(得分:1)
占位符是HTML属性,因此它应为set like that:
$builder
->add('epilogue', TextareaType::class, [
'attr' => [
'placeholder' => 'Example text'
]
])