Closed mantaroh closed 11 months ago
Spearly CMS API のオプションを指定した際に、正しい API オプションの指定が出来ていなかったため修正をしています。
<div cms-item cms-content-type="sample" cms-option-filterBy="test" cms-option-filterValue="value"> .... </div>
本来だったら、 filter_by / filter_value が正しいフィルターのキーになりますが、間違ったオプションになっていたため、フィルターが失敗していました。
filter_by
filter_value
This patch will fix the CMS API option key. Previous implementation is wrong this key.
Example:
This sample's key is filterBy and filterValue. This key is wrong, correctly this key should be filter_by / filter_value. As result of this wrong implement, generated page included all of content.
filterBy
filterValue
変更点
Spearly CMS API のオプションを指定した際に、正しい API オプションの指定が出来ていなかったため修正をしています。
本来だったら、
filter_by
/filter_value
が正しいフィルターのキーになりますが、間違ったオプションになっていたため、フィルターが失敗していました。Changes
This patch will fix the CMS API option key. Previous implementation is wrong this key.
Example:
This sample's key is
filterBy
andfilterValue
. This key is wrong, correctly this key should befilter_by
/filter_value
. As result of this wrong implement, generated page included all of content.