我将一个元组作为我的变量发送到javascript。但我找不到办法。我正在使用瓶子框架。
答案 0 :(得分:2)
Encode it into JSON。它将转换为javascript数组。
答案 1 :(得分:2)
要添加到@ Oil的相关提示,瓶子默认返回JSON你返回一个字典:
@route('/resource.json')
def resource_json():
response = dict(
data=('tuple', 'of', 'things'))
return response