我運行此代碼here哪個jQuery需要使用CouchJS?
<html>
<script type="text/javascript" src="lib/jquery-ui-1.8.21.custom.min.js"></script>
<script src="http://127.0.0.1:5984/_utils/script/jquery.couch.js"></script>
<!--<script type="text/javascript" src="lib/jquery-1.7.2.js"></script>-->
<script>
<!--var dbc = $.jqCouch.connection('db');-->
<!--dbc.exists('database_name');-->
<!--if ($.jqCouch.connection('db').create('database_name').ok) {-->
<!--alert("database created");-->
<!--}-->
$.couch.activeTasks({
success: function (data) {
console.log(data);
}
});
</script>
</html>
,我得到的錯誤。我已經嘗試過所有類型的jQueries,比如所有使用UI -custom和1.72的代碼,如代碼中所示。那麼,爲什麼我會得到這個錯誤?我在哪裏可以找到使用CouchJS需要哪個jQuery?
拼圖
也許有用到其他初學者使用CouchDB
Simple example about CouchJS in userspace for example with Browser?
Where do you include the jQuery library from? Google JSAPI? CDN?
您需要去掉這一<' - - >'並在'jQuery UI'之前加載它。 –
基於你的設置[this](http://pastie.org/4106353)應該刪除那個錯誤,如果沒有,那麼檢查你的jQuery路徑是否正確或從[CDN]加載jQuery(http:// pastie.org/4106376)。 –