多項選擇題原子開發(fā)的后端配置必須定義哪些屬性?()

A.name
B.code
C.bound_service
D.form


您可能感興趣的試卷

你可能感興趣的試題

1.多項選擇題通過開發(fā)自定義原子可以實現(xiàn)以下哪些場景的需求?()

A.通過API購買騰訊云服務(wù)
B.訪問藍鯨SaaS數(shù)據(jù)庫
C.ping某個網(wǎng)站是否可以訪問
D.拉取有權(quán)限的倉庫代碼

2.多項選擇題以下哪些是方法是Django中ORM的Manager的方法?()

A.filter
B.annotate
C.all
D.prefetch_related

3.多項選擇題Django的數(shù)據(jù)庫建模中,支持的外鍵類型都有哪些?()

A.ForeignKey
B.OneToOneField
C.ManyToOneField
D.ManyToManyField

5.多項選擇題有一張UserInfo表,需要過濾出姓名(username)為xiaoming,性別(sex)為male的數(shù)據(jù),假設(shè)只有一條數(shù)據(jù)符合條件,以下哪些語法是正確的?()

A.UserInfo.objects.get(username=xiaoming,sex=male)
B.UserInfo.objects.get(username=xiaoming).get(sex=male)
C.UserInfo.objects.filter(username=xiaoming,sex=male)
D.UserInfo.objects.filter(username=xiaoming).filter(sex=male)