我想要的:
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="30dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:textSize="15dp"
android:gravity="center"
android:layout_gravity="center"
android:textStyle="bold"
android:onClick="shopByCategory"
android:text="Shop By Category"/>
:ipAddress和filename来自http ...感谢您的帮助
我想要使用的地方:
SELECT MAX(pieces) //(to a var variable)
FROM record
WHERE ip = :ipAddress AND filename_full = :filename
答案 0 :(得分:1)
您可以使用 Mongoose ,它可以帮助您更轻松地使用MongoDB。
Record.findOne({
ip: ipAdress,
filename_full: filename
}).sort({
'pieces': -1
}).exec(function(err, doc) {
});