题目7单选题
以下哪段代码能正确发起带查询参数的 GET 请求A. uni.request({ url: "https://api.com?name=test", method: "GET" })B. uni.request({ url: "https://api.com", method: "POST", data: { name: "test" } })C. uni.request({ url: "https://api.com", method: "GET", data: "name=test" })D. uni.request({ url: "https://api.com", method: "GET", data: { name: "test" } })