所以我创建了这个子窗口,我想提供客户详细信息。
首先,打开子窗口(不使用搜索框),它返回数据,但无法显示其他数据库中的数据。
现在,当我使用搜索框时,它现在给出了错误:undefined variable paymentgroup。
第一个数据库是:func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
if indexPath.section == 0 {
//First get your selected cell
if let cell = collectionView.cellForItem(at: indexPath) as? TestViewCollectionViewCell {
//Now get selected cell text here
//update your section two array with new values
//Reload your collection view.
} else {
// Error indexPath is not on screen: this should never happen.
}
}
}
另一个数据库是:<aura:method name="search">
<aura:attribute name="boatTypeId" type="String"/>
</aura:method>
<aura:handler name="init" value="{!this}" action="{!c.doInit}" />
<lightning:layout horizontalAlign="space" multipleRows="true">
<aura:if isTrue="{!v.boats.length > 0}">
<aura:iteration items="{!v.boats}" var="bot">
<c:BoatTile boat="{!bot}" />
</aura:iteration>
<aura:set attribute="else">
<div style="text-align: center;"> No boats found </div>
</aura:set>
</aura:if>
</lightning:layout>
我认为我的查询错了,但我不知道如何修复。
这是我的代码:
clotho_mercurop_laravel
答案 0 :(得分:0)
以下网站介绍了Laravel中多个数据库连接的使用:Fideloper: Multiple DB connections in Laravel。
目前,您使用clotho_mercurop_laravel
和clotho_mercurop_eccube
作为表,而不是数据库。那是对的吗?