AlignmentBehavior
类的静态方法,用于将 JSON 数据解析为对齐行为对象。
AlignmentBehavior.fromJSON(json)
json
: 解析为对齐行为对象的 JSON 数据。对齐行为对象。
const json = {
type: 'alignment',
options: {
verticalAlign: 'center',
horizontalAlign: 'left'
}
};
const behavior = AlignmentBehavior.fromJSON(json);
console.log(behavior); // AlignmentBehavior { verticalAlign: 'center', horizontalAlign: 'left' }
json
参数必须是包含 type
和 options
属性的 JSON 对象。type
属性的值必须为 alignment
。options
属性必须包含 verticalAlign
和 horizontalAlign
属性,分别表示垂直和水平方向的对齐方式。可选值为 top
、middle
、bottom
和 left
、center
、right
。