青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

小默

【轉】HTTP Document API //TOFILE


This is an introduction to the CouchDB HTTP document API.

Naming/Addressing

Documents stored in a CouchDB have a DocID. DocIDs are case-sensitive string identifiers that uniquely identify a document. Two documents cannot have the same identifier in the same database, they are considered the same document.

 

http://localhost:5984/test/some_doc_id
http://localhost:5984/test/another_doc_id
http://localhost:5984/test/BA1F48C5418E4E68E5183D5BD1F06476


The above URLs point to some_doc_id, another_doc_id and BA1F48C5418E4E68E5183D5BD1F06476 in the database test.

Documents

A CouchDB document is simply a JSON object. You can use any JSON structure with nesting. You can fetch the document's revision information by adding ?revs=true or ?revs_info=true to the get request.

Here are two simple examples of documents:

{
"_id":"discussion_tables",
"_rev":"D1C946B7",
"Sunrise":true,
"Sunset":false,
"FullHours":[1,2,3,4,5,6,7,8,9,10],
"Activities": [
{
"Name":"Football""Duration":2"DurationUnit":"Hours"},
{
"Name":"Breakfast""Duration":40"DurationUnit":"Minutes""Attendees":["Jan""Damien""Laura""Gwendolyn""Roseanna"]}
]
}

{
"_id":"some_doc_id",
"_rev":"D1C946B7",
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Special Fields

Note that any top-level fields with a name that starts with a _ prefix are reserved for use by CouchDB itself. Also see Reserved_words. Currently (0.10+) reserved fields are:

Field Name

Description

_id

The unique identifier of the document (mandatory and immutable)

_rev

The current MVCC-token/revision of this document (mandatory and immutable)

_attachments

If the document has attachments, _attachments holds a (meta-)data structure (see section on HTTP_Document_API#Attachments)

_deleted

Indicates that this document has been deleted and will be removed on next compaction run

_revisions

If the document was requested with ?revs=true this field will hold a simple list of the documents history

_rev_infos

Similar to _revisions, but more details about the history and the availability of ancient versions of the document

_conflicts

Information about conflicts

_deleted_conflicts

Information about conflicts

Document IDs

Document IDs don't have restrictions on what characters can be used. Although it should work, it is recommended to use non-special characters for document IDs. Using special characters you have to be aware of proper URL en-/decoding. Documents prefixed with _ are special documents:

Document ID prefix

Description

_design/

are DesignDocuments

_local/

are not being replicated (local documents) and used for Replication checkpointing.

You can have / as part of the document ID but if you refer to a document in a URL you must always encode it as %2F. One special case is _design/ documents, those accept either / or %2F for the / after _design, although / is preferred and %2F is still needed for the rest of the DocID.

Working With Documents Over HTTP

GET

To retrieve a document, simply perform a GET operation at the document's URL:

GET /somedatabase/some_doc_id HTTP/1.0

Here is the server's response:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"_id":"some_doc_id",
"_rev":"946B7D1C",
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12Z-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Accessing Previous Revisions

See DocumentRevisions for additional notes on revisions.

The above example gets the current revision. You may be able to get a specific revision by using the following syntax:

GET /somedatabase/some_doc_id?rev=946B7D1C HTTP/1.0

To find out what revisions are available for a document, you can do:

GET /somedatabase/some_doc_id?revs=true HTTP/1.0

This returns the current revision of the document, but with an additional field, _revisions, the value being a list of the available revision IDs. Note though that not every of those revisions of the document is necessarily still available. For example, the content of an old revision get removed by compacting the database, or it may only exist in a different database if it was replicated.

To get more detailed information about the available document revisions, use the revs_info parameter instead. In this case, the JSON result will contain a _revs_info property, which is an array of objects, for example:

{
"_revs_info": [
{
"rev""123456""status""disk"},
{
"rev""234567""status""missing"},
{
"rev""345678""status""deleted"},
]
}

Here, disk means the revision content is stored on disk and can still be retrieved. The other values indicate that the content of that revision is not available.

You can fetch the bodies of multiple revisions at once using the parameter open_revs=["rev1","rev2",...], or you can fetch all leaf revisions using open_revs=all (see Replication_and_conflicts). The JSON returns an array of objects with an "ok" key pointing to the document, or a "missing" key pointing to the rev string.

[
{
"missing":"1-fbd8a6da4d669ae4b909fcdb42bb2bfd"},
{
"ok":{"_id":"test","_rev":"2-5bc3c6319edf62d4c624277fdd0ae191","hello":"foo"}}
]

PUT

To create new document you can either use a POST operation or a PUT operation. To create/update a named document using the PUT operation, the URL must point to the document's location.

The following is an example HTTP PUT. It will cause the CouchDB server to generate a new revision ID and save the document with it.

PUT /somedatabase/some_doc_id HTTP/1.0
Content
-Length: 245
Content
-Type: application/json
{
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Here is the server's response.

HTTP/1.1 201 Created
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok"true"id""some_doc_id""rev""946B7D1C"}

To update an existing document, you also issue a PUT request. In this case, the JSON body must contain a _rev property, which lets CouchDB know which revision the edits are based on. If the revision of the document currently stored in the database doesn't match, then a 409 conflict error is returned.

If the revision number does match what's in the database, a new revision number is generated and returned to the client.

For example:

PUT /somedatabase/some_doc_id HTTP/1.0
Content
-Length: 245
Content
-Type: application/json
{
"_id":"some_doc_id",
"_rev":"946B7D1C",
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Here is the server's response if what is stored in the database is revision 946B7D1C of document some_doc_id.

HTTP/1.1 201 Created
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok":true"id":"some_doc_id""rev":"2774761002"}

And here is the server's response if there is an update conflict (what is currently stored in the database is not revision 946B7D1C of document some_doc_id).

HTTP/1.1 409 Conflict
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Length: 33
Connection: close
{
"error":"conflict","reason":"Document update conflict."}

There is a query option batch=ok which can be used to achieve higher throughput at the cost of lower guarantees. When a PUT (or a document POST as described below) is sent using this option, it is not immediately written to disk. Instead it is stored in memory on a per-user basis for a second or so (or the number of docs in memory reaches a certain point). After the threshold has passed, the docs are committed to disk. Instead of waiting for the doc to be written to disk before responding, CouchDB sends an HTTP 202 Accepted response immediately.

batch=ok is not suitable for crucial data, but it ideal for applications like logging which can accept the risk that a small proportion of updates could be lost due to a crash. Docs in the batch can also be flushed manually using the _ensure_full_commit API.

POST

The POST operation can be used to create a new document with a server generated DocID. To create a named document, use the PUT method instead. It is recommended that you avoid POST when possible, because proxies and other network intermediaries will occasionally resend POST requests, which can result in duplicate document creation. If your client software is not capable of guaranteeing uniqueness of generated UUIDs, use a GET to /_uuids?count=100 to retrieve a list of document IDs for future PUT requests. Please note that the /_uuids-call does not check for existing document ids; collision-detection happens when you are trying to save a document.

The following is an example HTTP POST. It will cause the CouchDB server to generate a new DocID and revision ID and save the document with it.

POST /somedatabase/ HTTP/1.0
Content
-Length: 245
Content
-Type: application/json
{
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Here is the server's response:

HTTP/1.1 201 Created
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok":true"id":"123BAC""rev":"946B7D1C"}

DELETE

To delete a document, perform a DELETE operation at the document's location, passing the rev parameter with the document's current revision. If successful, it will return the revision id for the deletion stub.

DELETE /somedatabase/some_doc?rev=1582603387 HTTP/1.0

As an alternative you can submit the rev parameter with the etag header field If-Match.

DELETE /somedatabase/some_doc HTTP/1.0
If
-Match: "1582603387"

And the response:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok":true,"rev":"2839830636"}

COPY

Note that this is a non-standard extension to HTTP.

You can copy documents by sending an HTTP COPY request. This allows you to duplicate the contents (and attachments) of a document to a new document under a different document id without first retrieving it from CouchDB. Use the Destination header to specify the document that you want to copy to (the target document).

It is not possible to copy documents between databases and it is not (yet) possible to perform bulk copy operations.

COPY /somedatabase/some_doc HTTP/1.1
Destination: some_other_doc

If you want to overwrite an existing document, you need to specify the target document's revision with a rev parameter in the Destination header:

COPY /somedatabase/some_doc HTTP/1.1
Destination: some_other_doc
?rev=rev_id

The response in both cases includes the target document's revision:

HTTP/1.1 201 Created
Server: CouchDB
/0.9.0a730122-incubating (Erlang OTP/R12B)
Etag: 
"355068078"
Date: Mon, 
05 Jan 2009 11:12:49 GMT
Content
-Type: text/plain;charset=utf-8
Content
-Length: 41
Cache
-Control: must-revalidate
{
"ok":true,"id":"some_other_doc","rev":"355068078"}

MOVE

For a ~6 month period CouchDB trunk between versions 0.8 and 0.9 included the nonstandard MOVE method. Since MOVE is really just COPY & DELETE and CouchDB can not reasonably guarantee atomicity between the COPY & MOVE operations on a single or on multiple nodes, this was removed before the release of CouchDB 0.9.

Bulk Docs

For information about editing multiple documents at the same time, see HTTP_Bulk_Document_API

All Documents

To get a listing of all documents in a database, use the special _all_docs URI. This is a specialized View so the Querying Options of the HTTP_view_API apply here.

GET somedatabase/_all_docs HTTP/1.0

Will return a listing of all documents and their revision IDs, ordered by DocID (case sensitive):

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"0"rows": [
{
"id""doc1""key""doc1""value": {"rev""4324BB"}},
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
]
}

Use the query argument descending=true to reverse the order of the output table:

Will return the same as before but in reverse order:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"0"rows": [
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
{
"id""doc1""key""doc1""value": {"rev""4324BB"}},
]
}

The query string parameters startkey, endkey and limit may also be used to limit the result set. For example:

GET somedatabase/_all_docs?startkey="doc2"&limit=2 HTTP/1.0

Will return:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"1"rows": [
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
]
}

Use endkey if you are interested in a specific range of documents:

GET somedatabase/_all_docs?startkey="doc2"&endkey="doc3" HTTP/1.0

This will get keys inbetween and including doc2 and doc3; e.g. doc2-b and doc234.

Both approaches can be combined with descending:

GET somedatabase/_all_docs?startkey="doc2"&limit=2&descending=true HTTP/1.0

Will return:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"1"rows": [
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
]
}

If you add include_docs=true to a request to _all_docs not only metadata but also the documents themselves are returned.

all_docs_by_seq

NOTE: See /database/_changes as of 0.11

This allows you to see all the documents that were updated and deleted, in the order these actions are done:

GET somedatabase/_all_docs_by_seq HTTP/1.0

Will return:

HTTP/1.1 200 OK
Date: Fri, 
8 May 2009 11:07:02 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"4"offset"0"rows": [
{
"id""doc1""key""1""value": {"rev":"1-4124667444"}},
{
"id""doc2""key""2""value": {"rev":"1-1815587255"}},
{
"id""doc3""key""3""value": {"rev":"1-1750227892"}},
{
"id""doc4""key""4""value": {"rev":"2-524044848""deleted"true}}
]
}

All the view parameters work on _all_docs_by_seq, such as startkey, include_docs etc. However, note that the startkey is exclusive when applied to this view. This allows for a usage pattern where the startkey is set to the sequence id of the last doc returned by the previous query. As the startkey is exclusive, the same document won't be processed twice.

Attachments

Documents can have attachments just like email. There are two ways to use attachments. The first one is inline with your document and it described first. The second one is a separate REST API for attachments that is described a little further down.

A note on attachment names: Attachments may have embedded / characters that are sent unescaped to CouchDB. You can use this to provide a subtree of attachments under a document. A DocID must have any / escaped as %2F. So if you have document a/b/c with an attachment d/e/f.txt, you would be able to access it at http://couchdb/db/a%2fb%2fc/d/e/f.txt .

Inline Attachments

On creation, attachments go into a special _attachments attribute of the document. They are encoded in a JSON structure that holds the name, the content_type and the base64 encoded data of an attachment. A document can have any number of attachments.

When retrieving documents, the attachment's actual data is not included, only the metadata. The actual data has to be fetched separately, using a special URI.

If you need to access attachments with the document in one request, you can pass in the ?attachments=true URL parameter to get the data included in the JSON in the base64 encoded form. Since this puts a significant burden on CouchDB when you request this, you're not advised to use this feature unless you know what you are doing :)

Creating a document with an attachment:

{
"_id":"attachment_doc",
"_attachments":
{
"foo.txt":
{
"content_type":"text\/plain",
"data""VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
}
}
}

Please note that any base64 data you send has to be on a single line of characters, so pre-process your data to remove any carriage returns and newlines.

Requesting said document:

GET /database/attachment_doc

CouchDB replies:

{
"_id":"attachment_doc",
"_rev":1589456116,
"_attachments":
{
"foo.txt":
{
"stub":true,
"content_type":"text\/plain",
"length":29
}
}
}

Note that the "stub":true attribute denotes that this is not the complete attachment. Also, note the length attribute added automatically. When you update the document you must include the attachment stubs or CouchDB will delete the attachment.

Requesting the attachment:

GET /database/attachment_doc/foo.txt

CouchDB returns:

This is a base64 encoded text

Automatically decoded!

Multiple Attachments

Creating a document with two attachments:

{
"_id":"attachment_doc",
"_attachments":
{
"foo.txt":
{
"content_type":"text\/plain",
"data""VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
},
"bar.txt":
{
"content_type":"text\/plain",
"data""VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
}
}
}

Standalone Attachments

Note: This was added in version 0.9 of CouchDB. It is not available in earlier version.

CouchDB allows to create, change and delete attachments without touching the actual document. As a bonus feature, you do not have to base64 encode your data. This can significantly speed up requests since CouchDB and your client do not have to do the base64 conversion.

You need to specify a MIME type using the Content-Type header. CouchDB will serve the attachment with the specified Content-Type when asked.

To create an attachment:

PUT somedatabase/document/attachment?rev=123 HTTP/1.0
Content
-Length: 245
Content
-Type: image/jpeg
<JPEG data>

CouchDB replies:

{"ok"true"id""document""rev""765B7D1C"}

Note that you can do this on a non-existing document. The document and attachment will be created implicitly for you. A revision id must not be specified in this case.

To change an attachment:

PUT somedatabase/document/attachment?rev=765B7D1C HTTP/1.0
Content
-Length: 245
Content
-Type: image/jpeg
<JPEG data>

CouchDB replies:

{"ok"true"id""document""rev""766FC88G"}

To delete an attachment:

DELETE somedatabase/document/attachment?rev=765B7D1C HTTP/1.0

CouchDB replies:

{"ok":true,"id":"document","rev":"519558700"}

To retrieve an attachment:

GET somedatabase/document/attachment HTTP/1.0

CouchDB replies

Content-Type:image/jpeg
<JPEG data>

ETags/Caching

CouchDB sends an ETag Header for document requests. The ETag Header is simply the document's revision in quotes.

For example, a GET request:

GET /database/123182719287

Results in a reply with the following headers:

cache-control: no-cache,
pragma: no
-cache
expires: Tue, 
13 Nov 2007 23:09:50 GMT
transfer
-encoding: chunked
content
-type: text/plain;charset=utf-8
etag: 
"615790463"

POST requests also return an ETag header for either newly created or updated documents.

posted on 2010-05-11 10:20 小默 閱讀(697) 評論(0)  編輯 收藏 引用 所屬分類: Network

導航

統計

留言簿(13)

隨筆分類(287)

隨筆檔案(289)

漏洞

搜索

積分與排名

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            夜夜嗨av一区二区三区网站四季av | 久久免费精品日本久久中文字幕| 欧美国产一区视频在线观看| 欧美一区二区网站| 久久精品国产亚洲aⅴ| 久久精品一区蜜桃臀影院| 久久精品国产77777蜜臀| 亚洲欧美日韩国产综合| 久久久久久国产精品一区| 欧美 日韩 国产 一区| 久久免费黄色| 欧美韩国在线| 亚洲一区在线观看免费观看电影高清| 亚洲免费久久| 午夜精品区一区二区三| 久久这里有精品视频| 欧美激情精品久久久久久| 欧美精品成人91久久久久久久| 欧美大片91| 国产美女一区二区| 亚洲福利视频免费观看| 99国产精品久久久| 久久久噜噜噜久久中文字免| 亚洲精品小视频| 久久精品国产91精品亚洲| 欧美日韩国产欧| 狠狠色丁香久久综合频道| 中文国产亚洲喷潮| 在线播放不卡| 亚洲欧美日韩精品久久久| 久久久久久亚洲精品杨幂换脸| 亚洲国产mv| 日韩视频在线播放| 六十路精品视频| 狠狠色丁香久久婷婷综合丁香| 在线成人国产| 久久国产精品黑丝| 亚洲午夜免费视频| 欧美日韩国产精品| 91久久精品久久国产性色也91| 性欧美精品高清| 日韩视频免费观看高清在线视频| 欧美一区二区三区日韩视频| 欧美理论电影网| 在线观看视频免费一区二区三区| 欧美一区二区三区啪啪| 一本久道久久久| 欧美精品一区二区三区在线看午夜 | 尤物在线观看一区| 夜久久久久久| 亚洲日本中文| 久久夜色精品国产欧美乱极品| 麻豆91精品| 国产一区二区精品久久91| 一卡二卡3卡四卡高清精品视频| 免费毛片一区二区三区久久久| 亚洲视频你懂的| 欧美性猛交xxxx乱大交蜜桃| 亚洲激情午夜| 欧美成人免费视频| 久久九九国产精品怡红院| 国产一区二区三区日韩欧美| 亚洲麻豆av| 欧美激情按摩在线| 欧美极品影院| 亚洲天堂网在线观看| 亚洲精品久久久蜜桃| 欧美天堂在线观看| 久久国产视频网| 久久久久国产精品一区| 18成人免费观看视频| 欧美高潮视频| 免费观看国产成人| 日韩午夜在线播放| 国产精品v欧美精品∨日韩| 中文在线资源观看网站视频免费不卡| 亚洲精品久久久久久下一站| 国产精品美女久久久久av超清| 欧美一级大片在线观看| 久久九九精品99国产精品| 亚洲精品国产日韩| 制服丝袜亚洲播放| 好吊色欧美一区二区三区视频| 麻豆精品在线视频| 午夜在线电影亚洲一区| 久久久精品一品道一区| 久久精品最新地址| 99国产精品久久久| 亚洲一区二区三区免费观看 | 亚洲精品国产系列| 一本久道久久久| 狠狠色丁香久久婷婷综合_中| 亚洲欧洲精品一区二区精品久久久| 国产精品白丝av嫩草影院| 久久久久久久综合日本| 欧美国产一区二区| 久久精品国产99国产精品| 欧美成人在线免费观看| 性欧美激情精品| 久久久久久一区| 亚洲手机成人高清视频| 欧美在线视频日韩| 亚洲视频欧美在线| 久久午夜视频| 久久电影一区| 欧美三区美女| 亚洲国产精品成人综合| 国产精品久久久久久久久免费桃花| 久久一区激情| 国产精品亚发布| 99这里有精品| 亚洲黄一区二区| 久久www免费人成看片高清| 一区二区欧美日韩| 久久永久免费| 久久久噜噜噜久久久| 国产精品爽黄69| 亚洲日本欧美日韩高观看| 韩国美女久久| 欧美中文字幕在线| 午夜精品av| 欧美午夜国产| 亚洲国产专区校园欧美| 一区二区视频免费在线观看 | 亚洲欧美日韩中文播放| 欧美14一18处毛片| 久久免费黄色| 国产欧美日韩伦理| 亚洲视频国产视频| 亚洲自拍偷拍福利| 欧美日韩精品三区| 亚洲免费成人av电影| 99re66热这里只有精品4| 午夜精品久久久久久久久久久久| 亚洲精品一区二区在线| 欧美国产日韩二区| 亚洲第一中文字幕| 国产亚洲在线| 午夜精品区一区二区三| 久久精品72免费观看| 国产欧美日韩精品在线| 欧美在线视频播放| 亚洲免费综合| 欧美四级电影网站| 亚洲少妇自拍| 久久激情网站| 亚洲国产视频一区| 久久青青草原一区二区| 亚洲一区二区三区乱码aⅴ蜜桃女| 国产欧美一区二区精品婷婷| 99v久久综合狠狠综合久久| 99精品视频免费全部在线| 欧美喷水视频| 一本在线高清不卡dvd| 欧美一级视频免费在线观看| 浪潮色综合久久天堂| 亚洲日本乱码在线观看| 亚洲男人的天堂在线aⅴ视频| 国产精品家庭影院| 欧美一区在线直播| 欧美黄色小视频| 亚洲视频在线观看三级| 红桃av永久久久| 欧美日本在线看| 亚洲永久在线| 久久综合国产精品| 亚洲日本久久| 国产精品婷婷| 久久精品理论片| 欧美激情一区二区三区成人| 韩国av一区二区三区| 欧美成黄导航| 亚洲综合丁香| 欧美成人一区二区| 亚洲一区国产视频| 亚洲福利视频在线| 欧美日韩一本到| 午夜精品久久久久影视| 亚洲激情电影在线| 久久精品免费| 亚洲男女毛片无遮挡| 亚洲伦伦在线| 樱花yy私人影院亚洲| 国产精品视频自拍| 欧美日韩免费在线视频| 老司机午夜精品视频在线观看| 亚洲午夜影视影院在线观看| 欧美国产日韩一区二区三区| 欧美影院视频| 亚洲一二三区精品| 亚洲精选大片| 亚洲国产毛片完整版| 韩国精品一区二区三区| 国产伦精品一区二区| 欧美性jizz18性欧美| 欧美日韩第一区日日骚| 欧美成年网站| 欧美成人激情视频| 免费观看日韩av| 免费高清在线一区|