gpt4 book ai didi

javascript - js 文件中的谷歌自定义搜索 api

转载 作者:行者123 更新时间:2023-11-28 02:18:28 24 4
gpt4 key购买 nike

首先我在谷歌文档中找到了演示:

<html>
<head>
<title>JSON/Atom Custom Search API Example</title>
</head>
<body>
<div id="content"></div>
<script>
function hndlr(response) {
// handle result
}
</script>
<script src="https://www.googleapis.com/customsearch/v1?key=KEY&cx=cx&q=cars&callback=hndlr">
</script>
</body>
</html>

而且效果很好。

但是我想在 js 文件(例如 mySearch.js)中触发“搜索过程”,那么如何才能完成此操作?

示例:

var XXXLayer = cc.Layer.extend({
init:function () {
this._super();
var theUrl = 'https://www.googleapis.com/customsearch/v1?key=KEY&cx=cx&q=cars&callback=hndlr';

// what to do here ???????

return true;
},
hndlr:function(response) {
// handle result
}
});

如有任何建议,我们将不胜感激:)

最佳答案

当您触发搜索过程时,您可以添加脚本元素。

function triggersearch(){
var query=document.getElementById("query").value;
var JSElement = document.createElement('script');
JSElement.src = 'https://www.googleapis.com/customsearch/v1?key=KEY&cx=KEY&q='+query+'&callback=hndlr';
document.getElementsByTagName('head')[0].appendChild(JSElement);
}

关于javascript - js 文件中的谷歌自定义搜索 api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16040889/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com