Git Product home page Git Product logo

Comments (10)

oreynaldocl avatar oreynaldocl commented on June 12, 2024

+1 Simple schema is amazing, I will need it to migrate to angular - meteor.

from meteor-rxjs.

barbatus avatar barbatus commented on June 12, 2024

Try it as

let col = new Mongo.Collection(...);
col.attachSchema(...);
let obs = new MongoObservable.Collection(col);

from meteor-rxjs.

oreynaldocl avatar oreynaldocl commented on June 12, 2024

Hi @barbatus I tried but the insert or update uses the simple schema, but the bad thing, the collection doesn't throw any error. My action finished without any error :'( but obviously the document wasn't save in mongo db.

image

from meteor-rxjs.

oreynaldocl avatar oreynaldocl commented on June 12, 2024

As you see in the image the error is correctly passed in the callback.

from meteor-rxjs.

barbatus avatar barbatus commented on June 12, 2024

so you'll need to use second argument of the subscribe

.subscribe(..., err => ...)

Or to use catch operator

obs.catch(err => ...).subscribe(...)

from meteor-rxjs.

jalalat avatar jalalat commented on June 12, 2024

it worked for me. Thanks a lot.

from meteor-rxjs.

oreynaldocl avatar oreynaldocl commented on June 12, 2024

Yes barbatus I know, but the code is of https://github.com/Urigo/meteor-rxjs/blob/master/src/ObservableCollection.ts#L71. I am working in tutorial and the insert in client side doesn't throw exception, I will check with observable.
My mistake the insert in client is async :( Ok I will review it.

from meteor-rxjs.

leroadrunner avatar leroadrunner commented on June 12, 2024

Hi @barbatus, how do you manage to add the attachSchema property in an angular-meteor collection, since simple schema don't have this property and there's no typings for the collection2 package ?
Thanks

from meteor-rxjs.

jalalat avatar jalalat commented on June 12, 2024

Hi @leroadrunner,

Check my code here:

class RepliesCollection extends Mongo.Collection < Reply > {
}
let RepliesMongo: any = new RepliesCollection("replies");
RepliesMongo.attachSchema(ReplySchema);
export const Replies = new MongoObservable.Collection < Reply >(RepliesMongo);

Let me know if you need any other info on this.

from meteor-rxjs.

leroadrunner avatar leroadrunner commented on June 12, 2024

Thanks @jalalat it absolutely works.

from meteor-rxjs.

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.