0
관련심포니 : 일부 필드 형태 I이 schema.yml 파일을 가지고 서로
Region:
columns:
name: { type: string(255), notnull: true, unique: true }
options:
symfony: { form: false, filter: false }
Province:
columns:
id: { type: string(2), notnull: true, primary: true }
name: { type: string(255), notnull: true, unique: true }
region_id: { type: integer, notnull: true }
relations:
Region: { local: region_id, foreign: id, onDelete: CASCADE, foreignAlias: Provinces }
options:
symfony: { form: false, filter: false }
City:
columns:
id: { type: string(4), notnull: true, primary: true }
name: { type: string(255), notnull: true, unique: true }
province_id: { type: string(2), notnull: true }
latitude: { type: decimal, scale: 6, size: 8, notnull: true }
longitude: { type: decimal, scale: 6, size: 8, notnull: true }
relations:
Province: { local: province_id, foreign: id, onDelete: CASCADE, foreignAlias: Cities }
options:
symfony: { form: false, filter: false }
나는이 필드는 서로 관련이 가지고 양식을하고 싶습니다 : 나는 드롭 다운에서 지역을 선택 메뉴를 선택한 다음 다음 드롭 다운 메뉴에서 선택한 지역의 주 중에서 선택할 수 있습니다. 그런 다음 마지막 드롭 다운 메뉴에서 이전에 선택한 주 도시 만 볼 수 있습니다.
이 작업 방법에 대해서는 잘 모릅니다 ... 저를 도와주세요. 폼 클래스를 생성하도록 각 모델에 FALSE ':
먼저 사용할 수 있습니다, 당신은'양식을 제거해야합니다. – j0k
좋습니다, 완벽한 감사합니다 ... 양식을 만들었지 만 테이블에 외래 키가 있어도 해당 필드 (지역,도, 도시)를 양식으로 사용하면 원하는 동작이 없습니다. – satboy78
이러한 동작은 존재하지 않습니다 (impov). 당신 자신의 – j0k