我有以下配置defaults.yml
:
poll_votes:
type: string
value: ''
name: 'Votes'
description: ''
editable: true
system: false
nullable: false
stConfig::get('poll_votes');
将返回正确的值(可以在后端更新),但调用时值没有更新stConfig::set('poll_votes', 'option1: 1 vote');
如何动态设置此值?谢谢你。