[Solved] TypeError: JSON string indices must be integers [closed]
There is no way to add extra indexes after “service_name”, as it returns already a string. Dictionaries don’t work in such a way that you can get different keys just by adding them after eachother, this would not make sense programatically. You should therefore create a new dictionary with the keys you want. return render_template(‘index.html’, … Read more