问题标签 [masonite]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
98 浏览

python - Masonite - TypeError:无法将“未定义”对象隐式转换为 str

我正在使用 Masonite 框架,craft auth在 Masonite 1.6 中运行命令后注册用户时出现错误。堆栈跟踪的结尾如下所示:

{% for i, line in enumerate(open(stack.filename)) %}

TypeError: Can't convert 'Undefined' object to str implicitly

0 投票
1 回答
63 浏览

python - Masonite - 重定向到“/”时出现内容损坏错误

我正在使用 Masonite 框架,每当我有这段代码时:

每当它被击中并且它正在重定向时,它会抛出一个损坏的内容错误或一个无限重定向错误,具体取决于浏览器。

0 投票
1 回答
171 浏览

python - Masonite - TypeError > encoding without a string argument

Whenever I render a view, the error

encoding without a string argument`

is being thrown. This is my controller method:

0 投票
1 回答
122 浏览

python - Masonite - 制作新命令抛出模块“urllib”没有属性“urlopen”错误

我正在尝试使用 Masonite 框架,并且我刚刚安装了该masonite-cli软件包,并且每当我运行时craft newAttribute Error - module 'urllib' has no attribute 'urlopen'都会抛出一个。我的基本 Python 版本是 2.7,但我安装了 3.6。

0 投票
1 回答
124 浏览

pipenv - Masonite 抛出 Invalid secret key 错误,即使在创建了密钥之后也是如此

我正在尝试设置会话request.session.set('request_token', oauth.request_token)并且它正在抛出

InvalidSecretKey > 您传递了无效的密钥:your-secret-key。确保您已正确添加您的密钥。

我确实craft key --store创建了一个密钥并存储它。

masonite==2.0.20用于pipenv包管理的Masonite 。

0 投票
1 回答
60 浏览

python - Masonite 中的 login_required() 等价物是什么?

在Django中,我们login_required()在视图周围使用decoratir,因此需要登录才能传递请求,通常它会重定向到登录页面?

如何在 Masonite 中做到这一点?

0 投票
1 回答
31 浏览

python-3.x - 如何从 Masonite 提供 robots.txt

我想提供文件,如robots.txt,humans.txtmanifest.json.

我看到了文档,我没有找到解决方案,我发现view.render只提供 HTML 而不是文本或 JSON 或任何其他文件。

0 投票
1 回答
72 浏览

python-3.x - 在 Masonite 中在哪里更改 HTTP 端口设置?

当我运行它并在端口craft serve上提供网页时。8000

有没有可以更改端口的设置,以便我可以在3000端口或其他东西上运行服务器?

0 投票
1 回答
36 浏览

python - Masonite:生产数据的迁移

实际上,我无法在我的迁移文件中正确导入 Masonite 的模型。我想创建预先注册的数据作为数据库种子。我怎样才能做到这一点?

0 投票
1 回答
27 浏览

python - Masonite - 制作路线组时“名称”和“前缀”有什么区别

我有这个代码片段,但我不确定组参数prefixname组参数之间的区别是什么?