0
我不明白如何使用SugarORM保存數組列表中的信息。如何在SugarORM中保存ArrayList?
for (int i =0 ; i<price.size(); i++){
List <OrdersSugarORM> ordersGo = new ArrayList<>();
ordersGo.add(new OrdersSugarORM(article.get(i)));
OrdersSugarORM.saveInTx(ordersGo);
}
問題是它我想知道我的工作與article.get(i)因爲他只想字符串和toString根本沒有幫助 – Slavik
你必須編輯你的問題,包括類定義。我無法猜測參數 –