django nonrel appengine 与syncdb 的问题

发布于 2024-12-04 20:10:40 字数 209 浏览 1 评论 0原文

我是 django 的新手,仍然在弄清楚很多事情。

当我运行manage.py的syncdb命令时,完成一些步骤后,我得到:

AttributeError: "'NoneType' object has no attribute 'mkstemp'" in >忽略了

我该如何解决这个问题?有没有 django nonrel 版本可以解决这个问题?

I'm new to django, and still figuring out a lot of things.

When I run the syncdb command of manage.py, after some of the steps have been completed, I get this:

AttributeError: "'NoneType' object has no attribute 'mkstemp'" in > ignored

how do I solve this? Is there a version of django nonrel that solves this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月隐月明月朦胧 2024-12-11 20:10:40

“gagan”在此处发布了原因和解决方案< /a>.

我稍微改变了我的settings.py来解决这个问题。我在 settings.py 中添加了以下内容,

DATABASES['native'] = { 
        'ENGINE': 'djangoappengine.db', 
        'HIGH_REPLICATION': True, 
        'DEV_APPSERVER_OPTIONS': { 
            'high_replication' : True, 
            'use_sqlite': True, 
            } 
    } 

并删除了这一行,

DATABASES['native'] = DATABASES['default'] 

"gagan" posted the reason and solution right here.

I changed my settings.py little bit to resolve this. I added following to settings.py,

DATABASES['native'] = { 
        'ENGINE': 'djangoappengine.db', 
        'HIGH_REPLICATION': True, 
        'DEV_APPSERVER_OPTIONS': { 
            'high_replication' : True, 
            'use_sqlite': True, 
            } 
    } 

and removed this line,

DATABASES['native'] = DATABASES['default'] 
五里雾 2024-12-11 20:10:40

我认为它应该是 allbuttonspressed 版本。我在三月份尝试过,waldemar 的例子有效(但我为我的项目选择了普通的 gae)。

I think it should be the allbuttonspressed version. I tried it in march and the exmples from waldemar worked (but I chose plain gae for my project).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文