我们有一个站点,其顶部具有一个非常简单的站点搜索表单,如下所示:
> **TypeError Traceback (most recent call last)
> /usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/tensor_util.py
> in make_tensor_proto(values, dtype, shape, verify_shape)**
>
> **TypeError: Expected binary or unicode string, got {'sent_symbol': <tf.Tensor 'random_shuffle_queue_DequeueMany:3' shape=(128,)
> dtype=int64>}**
>
> **TypeError Traceback (most recent call last) <ipython-input-10-9dfe23a4bf62> in <module>()
> ----> 1 estimator.train(input_fn=train_input_fn, steps=1000);**
>
> **TypeError: Failed to convert object of type <class 'dict'> to Tensor. Contents: {'sent_symbol': <tf.Tensor
> 'random_shuffle_queue_DequeueMany:3' shape=(128,) dtype=int64>}.
> Consider casting elements to a supported type.**
我们的问题是,如果使用chrome,我将一段lorem ipsum文本粘贴到站点搜索表单中,然后稍后返回到表单,并开始输入单词“ lorem”,那么我会得到一个自动完成时间,有时它会延伸到我的两个显示器上。其他时间,它将显示在表单输入上方,并向右伸展。我见过一些案例,其中“自动完成”选项太大,以至于妨碍了我使用网站导航或阅读网站内容的能力。我需要弄清楚如何截断自动填充选项。我想限制宽度。有任何想法吗?我希望我们可以解决自动填充问题,而不必诉诸<div class="siteSearch">
<form id="search_form" method="GET" action="/search" novalidate>
<input id="search_text"
type="text"
placeholder="Sitewide Search"
aria-label="Enter a search term for the site search. Press enter to search"
name="s" />
<input type="submit" class="site-search-input" value="" />
</form>
</div>
<div class="clear"></div>
。
我在复制Chrome 68时使用的是Chrome 68。
谢谢