嗨,我想在运行我的应用程序(在本地和服务器中)时过滤显式图像。如何限制包含成人图像的图像我应该如何使用谷歌自定义搜索引擎限制图像请任何人帮助我。
我正在使用下面的代码,但它不起作用。
<script type="text/javascript">
google.load('search', '1');
function initialize() {
var searchControl = new google.search.SearchControl();
searchControl.addSearcher(new google.search.ImageSearch());
searchControl.draw(document.getElementById("searchcontrol"));
searchControl.execute("sunset");
}
google.setOnLoadCallback(initialize);
</script>