有人知道您为什么在终端中看到“空白取决于空白”吗?当然是空白的文件名。
lab5b.adb:1:59: "Sorted_Hero_List (spec)" depends on "Hero_Handling (body)"
答案 0 :(得分:1)
我猜list
的第一行是
df['new'] = (df.stack()
.reset_index(name='val')
.query('val == 1')
.groupby('level_0')['level_1']
.apply(list))
,并且 <select v-model="dessert" @change="dessertChanged">
<option>Ice Cream</option>
<option>Cake</option>
<option>Pie</option>
</select>
<select v-model="flavor">
<option v-for="flavor in flavors" :key="flavor.value" :value="flavor.value">
{{flavor.value}}</option>
</select>
<script>
data:{
flavours:[],
dessert:''
},
methods:{
dessertChanged:function(){
if(this.dessert == 'ice cream'){
this.flavours = [{ value:'Vanilla'},{value:'butter scotch'}];
}
else if(this.dessert == 'cake'){
this.flavours = [{ value:'fruit cake'},{value:'chocolate'}];
}
else if(this.dessert == 'Pie'){
this.flavours = [{ value:'so' cake'},{value:'on'}];
}
}
}
</script>
是lab5b.adb
的泛型实例,并且您仅向编译器提供了该规范(with Sorted_Hero_List;
),而不为主体提供了规范(Sorted_Hero_List
)。
或者也可以是Hero_Handling
与hero_handling.ads
一起使用。