Reputation: 3
I'm passing parameter on model call like this
app.store.find("post",{postNumber:[111,2]});
the url for this call will be
post?postNumber[]=111&postNumber[]=2
but my need to have URL should be
post?postNumber=111&postNumber=2
Please tell me how to solve it ?
Upvotes: 0
Views: 42