Using CouchDB's jquery.couch.js?

穿精又带淫゛_ 提交于 2019-12-05 00:38:15

问题


Here http://blog.couchone.com/post/1027100082/whats-new-in-couchdb-1-0-part-4-securityn-stuff it says that jquery.couch.js is the standard JavaScript API that ships with CouchDB.

But how do i get the jquery.couch.js file from couchdb so I could use it's functions ($.couch.signup, $.couch.login etc) in my Sproutcore application or another frontend application?


回答1:


Futon uses this API itself, so you can see where it includes it, as well as other dependencies it may have, depending on what you'll be doing. Since the CouchDB server can serve up HTTP requests, you can also pull in the dependencies like Futon does.

<script type="text/javascript" src="http://localhost:5984/_utils/script/jquery.couch.js"></script>

Obviously you'll change the hostname to match your couchapp's hostname.




回答2:


I agree with Dominic but also want to add that just linking directly to _utils is not a great idea because your app will not work on iPhone's safari browser. There's already a post on stackoverflow talking about this: Simple CouchDB + jQuery mobile app loads list fine in desktop browsers, just not mobile

So indeed you should use what ships with _utils as your source but instead of linking directly to it, you may want to copy it over to the vendor/couchapps directory as recommended in the post above, if you care about mobile browsers.




回答3:


It looks like futon is deprecated in year 2019 and you wont get those _utils file from fauxton such as _utils/script/jquery.couch.js or jquery.js, jquery.couch.js anymore.



来源:https://stackoverflow.com/questions/4975117/using-couchdbs-jquery-couch-js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!