Code Monkey home page Code Monkey logo

Comments (9)

ocram avatar ocram commented on May 21, 2024

Thanks! Could you please provide some more details on this problem?

Where is this code from? Is it from the library or from your custom code?

If there's an exception, can you post the stack trace?

from android-ddp.

guoyoujin avatar guoyoujin commented on May 21, 2024

From meteor. Java file

from android-ddp.

guoyoujin avatar guoyoujin commented on May 21, 2024

I want to query databse user _id = 10 user query data? How to implement? can you help me?

from android-ddp.

ocram avatar ocram commented on May 21, 2024

Finding an entry from users where _id = 10 would be something like this in MongoDB:

db.users.find({ _id: 10 })

With this library, the equivalent would be similar to the following:

Map<String, Object> query = new HashMap<String, Object>();
query.put("_id", 10);
mMeteor.call("/users/find", query);

from android-ddp.

guoyoujin avatar guoyoujin commented on May 21, 2024

Thank you, I have solve this problem

from android-ddp.

isdzulqor avatar isdzulqor commented on May 21, 2024

@guoyoujin could you tell me how you solve your problem,
the slash at the beginning is only needed when accessing collections, so how do you handle the method in server because it's started with slash and need a return data, and how do you handle the data,,
can you give me some example code, please,

from android-ddp.

ocram avatar ocram commented on May 21, 2024

@isdzulqor Sorry, the example was probably wrong. As we found out in the other issues already, you can't call the find method. You really have to use subscriptions and onDataAdded(...).

Nevertheless, it would be interesting to know how you solved your problem, @guoyoujin -- that's right :)

from android-ddp.

isdzulqor avatar isdzulqor commented on May 21, 2024

@mwaclawek yeah,, I have found my solution and it's solved

from android-ddp.

guoyoujin avatar guoyoujin commented on May 21, 2024

@isdzulqor Sorry, what is more, these days I was not pay attention to the mail, you can look at my code, though he is written using Chinese
https://github.com/guoyoujin/learning-android-ddp

from android-ddp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.