Thank you so much for your responses. I will play with it now and update the results.
-D On Mon, Nov 29, 2010 at 9:52 AM, Alan Plante <[email protected]> wrote: > Typically the login name and password are coming from a login form/input > controls of some sort, with values entered by the user, so the name and > password are not hardcoded in your code. So, would be something like: > $.couch.login( {name:$("#userField").val(), > password:$("#pwdField").val()}); > > Al > > On Mon, Nov 29, 2010 at 9:39 AM, Duc Phan <[email protected]> wrote: > > > Hi Allan, > > > > I still don't understand exactly how to pass in an object with a name and > > password property. > > > > The exact syntax in jquery.couch api for login is: > > $.couch.login(options)say my created account is: jdoe/foo. > > > > do I do this? $.couch.login( {name:"jdoe", password:"foo"}); > ??? > > > > And another question I have is...if that is how I login in couchapp using > > jquery.couch . How do I protect my account login from > > people doing view/Source? > > > > Thank you so much for your help. > > > > Best Regards, > > D > > > > On Sun, Nov 28, 2010 at 6:39 PM, Alan Plante <[email protected]> > > wrote: > > > > > Take a look in jquery.couch.js, located in <couch install > > > loc>/share/couchdb/www/script/jquery.couch.js (on Windows anyway, maybe > > > somewhere else on Linux?). Another way to see what's going on in there > > is > > > to set a breakpoint and step into it in Firebug (assuming you're on > FFX; > > > I'm > > > sure there are similar tools on IE and Chrome). Login method takes an > > > object with a name and password property, so {name:"jdoe", > > password:"foo"}. > > > It also takes an optional success(response) and/or error(requestStatus, > > > responseError, responseReason) function. > > > > > > Hope this helps, > > > > > > Al > > > > > > On Sun, Nov 28, 2010 at 4:26 PM, Duc Phan <[email protected]> wrote: > > > > > > > Hello all, > > > > > > > > Can someone please explain to me what do I need to pass in as the > > > parameter > > > > to log in from couchapp via jquery. > > > > > > > > For example I have an admin account name "John" "Doe". > > > > What is the exact syntax to login and create a session in my > couchApp. > > > > > > > > Thanks in advance. > > > > > > > > > > > > > > > >
