如何使用Go接口测试Google API Golang库?
<p>type MyFile struct {</p><p> DownloadUrl string
json:“ downloadUrl,omitempty”</p><p>
} </p><p>type MyFilesGetCall接口{</p><p> Do()(* MyFile,error)</p><p> // Do()(* drive.File,错误)//此功能有效</p><p>} </p><p>
键入MyFilesService接口{</p><p> Get(string)* MyFilesGetCall </p><p> // Get(string)* drive.FilesGetCall //此功能有效</p><p>}</p><p>
func GetInfo(id字符串,myService MyFilesService){</p><p> myService.Get(id).Do()</p><p>} </p><p>
func main(){</p><p> drive,_:= drive.New(new(http.Client))</p><p> GetInfo(“ id”,drive.Files)</p><p>} </p><p> </ code> </ pre> </p>
当我尝试运行此文件时,出现以下错误:
<p>$可以运行.go </p><p>./so.go:24:无法在GetInfo的参数中使用drive.Files(类型* drive.FilesService)作为MyFilesService类型:</p><p><p>drive.FilesService不即时 plement MyFilesService(错误的Get方法类型)</p><p>具有Get(字符串)* drive.FilesGetCall </p><p>想要Get(字符串)* MyFilesGetCall </p><p>./so.go:28:fService.Get(id).Do undefined(type* MyFilesGetCall没有字段或方法Do)</p><p></ code> </ pre> </p>
接口似乎只能工作1级。
https://ask.csdn.net/questions/1046052参考下这个 可以参考这篇文章看下呢 https://ask.csdn.net/questions/1046052 格式化下代码 方法是否正确
页:
[1]