1

web2py に問題があります。modules フォルダーに defVals.txt というテキスト ファイルがあります。open("defVals.txt")(defVals.txt と同じディレクトリのモジュールで) を使用して、それから読み取ろうとしましたが、次のエラーが表示されます。

Traceback (most recent call last):
 File "/home/jordan/web2py/gluon/restricted.py", line 212, in restricted
   exec ccode in environment
File "/home/jordan/web2py/applications/randommotif/controllers/default.py", line 67,     in <module>
 File "/home/jordan/web2py/gluon/globals.py", line 188, in <lambda>
self._caller = lambda f: f()
File "/home/jordan/web2py/applications/randommotif/controllers/default.py", line 13, in index
  defaultData = parse('defVals.txt')
File "applications/randommotif/modules/defaultValParser.py", line 6, in parse
 lines = open(fileName)
IOError: [Errno 2] No such file or directory: 'defVals.txt'

私は何を間違っていますか?defVals.txt はどこに配置すればよいですか

Ubuntu 12.10 を使用しています

ありがとう、

ヨルダン

アップデート:

これは、defaultValParser.py のソース コードです。

import itertools
import string
import os
from gluon import *
from gluon.custom_import import track_changes; track_changes(True)

#this returns a dictionary with the variables in it.
def parse(fileName):
    moduleDir = os.path.dirname(os.path.abspath('defaultValParser.py'))
    filePath = os.path.join(moduleDir, fileName)
    lines = open(filePath, 'r')
    #remove lines that are comments. Be sure to remove whitespace in the beginning and end of line
    real = filter(lambda x: (x.strip())[0:2] != '//', lines)
    parts = (''.join(list(itertools.chain(*real)))).split("<>")
    names = map(lambda x: (x.split('=')[0]).strip(), parts)
    values = map(lambda x: eval(x.split('=')[1]), parts)
    return dict(zip(names, values))

それをインポートして端末から呼び出すと (gluon のインポートをコメントアウトした場合) 正常に動作しますが、web2py コントローラーから呼び出すと完全に失敗します:

Traceback (most recent call last):
  File "/home/jordan/web2py/gluon/restricted.py", line 212, in restricted
   exec ccode in environment
  File "/home/jordan/web2py/applications/randommotif/controllers/default.py", line 71, in <module>
  File "/home/jordan/web2py/gluon/globals.py", line 188, in <lambda>
  self._caller = lambda f: f()
  File "/home/jordan/web2py/applications/randommotif/controllers/default.py", line 17, in index
  defaultData = parse('defVals.txt')
  File "applications/randommotif/modules/defaultValParser.py", line 6, in parse
 IOError: [Errno 2] No such file or directory: 'defVals.txt'
4

1 に答える 1

2

__file__モジュールのパスに基づく絶対パスを使用します。

moduledir = os.path.dirname(os.path.abspath('__file__'))

# ..
defaultData = parse(os.path.join(moduledir, 'defVals.txt'))

__file__は、現在のモジュールのファイル名であり、.dirname()of を使用して、モジュールが存在するディレクトリを取得します。.abspath()以前は、モジュール ファイルの絶対パスがあることを常に確認していました。

moduledirモジュール内のグローバルです。

于 2012-12-23T22:17:18.283 に答える