1

Whenever I render a view, the error

encoding without a string argument`

is being thrown. This is my controller method:

def show(self, Application):
    view('welcome', {'app': Application})
4

1 回答 1

0

抛出此错误是因为您的视图没有返回任何内容。您的视图应该始终有回报,因为 Masonite 需要知道您想要显示什么。

您可以通过返回视图来修复此错误:

def show(self, Application):
    return view('welcome', {'app': Application})
于 2018-05-06T00:46:12.967 回答