在我的JS文件中我需要在DB上进行搜索(select from from table where condition)并将结果存储在一个数组中(多维) 你知道怎么做吗? 提前谢谢你
答案 0 :(得分:2)
最好的解决方案是使用<customSQL>
标签来使用dataSource文件,这是一个例子:
<operationBindings>
<operationBinding operationType="fetch">
<customSQL>
SELECT Name, Adress, Phone, Age
FROM tableName
where Age >20
</customSQL>
</operationBinding>
</operationBindings>
答案 1 :(得分:1)
请勿在与JavaScript
相关的Database
中撰写任何代码。
Smart GWT
始终使用DataSource
您可以使用GWT JSNI从JavaScript调用Java方法,反之亦然。
上查找示例代码