inProgress-team / react-native-meteor

Meteor Reactivity for your React Native application :)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do I change the subscription parameters in the component

eugle opened this issue · comments

commented

Meteor.subscribe('city.by.name’,?)

I want to know how to change the subscription parameters in the component, for example, the city below, according to the user input, how to do

export default withTracker(param => {
let city = 'sz';
Meteor.subscribe('city.by.name’,city);
return {
list: Meteor.collection('city').find(),
};
})(App);

Poor English, sorry

Hi @mozibrand ,
I have a similar problem from my app.

My solution : I passe args (like filters) to screenProps of AppNavigator (a "Reduxify" navigation).
Maybe you can take example to resolve your situation ?

Else, have you got found any solution at your problem ? i'm interesting by any suggestions

Poor english too... Hope we understanding us ^^