Google App EngineアプリケーションでBootstrapタイプアヘッドを使用していますが、機能しません。
私のHTML:
<div class="well">
<input type="text" class="span3" id="search" name="search"
data-provide="typeahead" data-items="4" />
</div>
<script>
$('#search').typeahead({
ajax: { url: '/SearchCity',
triggerLength: 1 }
});
</script>
そして私のPythonコード:
class SearchCity(webapp2.RequestHandler):
def post(self):
data = ['cat','dog','bird', 'wolf']
data = json.dumps(data)
self.response.out.write(data)
自動完了が機能しないのはなぜですか?このコードの何が問題になっていますか?