1

これをwebpack/loadersディレクトリに追加して、webpackローダーをセットアップしようとしました

var path = require('path');

module.exports = {
    test: /\.html$/,
    loaders: [`ngtemplate?relativeTo=${path.join(__dirname, "/app")}`, "html"] //html?attrs[]=div:ng-include
}

次に、.js コードから適切なテンプレート ファイルを要求します。

templateUrl: require('ngtemplate!html!./app/views/environment/index.html')

しかし、次のエラーが表示されます

Module not found: Error: Can't resolve 'html' in '/Users/joe/testrails5.1/app/javascript/app/scripts'
resolve 'html' in '/Users/joe/testrails5.1/app/javascript/app/scripts'
  Parsed request is a module

これは他の誰にとっても機能しますか?angular 1.6 を使用していますが、別のモジュールを使用する必要がありますか?

4

0 に答える 0