2

如果我按照我看到的示例来获取集合中的文档项,我最终会得到以下结果。它确实带回了一个条目,但它不是文件夹中的项目,它只是文件夹条目本身。

<cfhttp url="https://docs.google.com/feeds/documents/private/full/folder%3A0B_xSYw8SWKixSxxx/contents" method="get" result="result" charset="utf-8"> <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth(variables.docservice)#">

如果我发送 https://docs.google.com/feeds/documents/private/full?showfolders=true 我会得到我所有的文档和文件夹列表。

我错过了什么吗?

4

1 回答 1

0

如果我没看错,那么您需要使用不同的标签。

<cfdirectory 
directory = "directory name"
action = "list"
name = "query_name"
sort = "asc"
type = "all">
<cfdump var="#query_name#"/>
于 2013-04-11T17:46:49.233 回答