您好我使用codeigniter进行了项目并将其上传到000webhost.it但是图片没有。
def get_n_largest_vals(n, d):
x = {key: heapq.nlargest(len, map(int, d[key])) for key in d}
return {key: map(str, x[key]) for key in x}
此代码提供图像提交它在localhost工作但是没有出现在website.how我可以编辑在网站上工作吗?请 这是我的config.php
ls = [{'0': {'1': '1','2': '0.5','3': '1'},'1': {'0': '0.2','2': '1','3': '0.8'},}]
d = ls[0]
get_n_largest_vals(2, d)
>>> {'0': ['3', '2'], '1': ['3', '2']}