问题标签 [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.
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
python - Masonite - 重定向到“/”时出现内容损坏错误
我正在使用 Masonite 框架,每当我有这段代码时:
每当它被击中并且它正在重定向时,它会抛出一个损坏的内容错误或一个无限重定向错误,具体取决于浏览器。
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:
python - Masonite - 制作新命令抛出模块“urllib”没有属性“urlopen”错误
我正在尝试使用 Masonite 框架,并且我刚刚安装了该masonite-cli
软件包,并且每当我运行时craft new
,Attribute Error - module 'urllib' has no attribute 'urlopen'
都会抛出一个。我的基本 Python 版本是 2.7,但我安装了 3.6。
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 。
python - Masonite 中的 login_required() 等价物是什么?
在Django中,我们login_required()
在视图周围使用decoratir,因此需要登录才能传递请求,通常它会重定向到登录页面?
如何在 Masonite 中做到这一点?
python-3.x - 如何从 Masonite 提供 robots.txt
我想提供文件,如robots.txt
,humans.txt
和manifest.json
.
我看到了文档,我没有找到解决方案,我发现view.render
只提供 HTML 而不是文本或 JSON 或任何其他文件。
python-3.x - 在 Masonite 中在哪里更改 HTTP 端口设置?
当我运行它并在端口craft serve
上提供网页时。8000
有没有可以更改端口的设置,以便我可以在3000
端口或其他东西上运行服务器?
python - Masonite:生产数据的迁移
实际上,我无法在我的迁移文件中正确导入 Masonite 的模型。我想创建预先注册的数据作为数据库种子。我怎样才能做到这一点?
python - Masonite - 制作路线组时“名称”和“前缀”有什么区别
我有这个代码片段,但我不确定组参数prefix
和name
组参数之间的区别是什么?