我有一个基本的Laravel项目,一个todo应用程序,我正在使用Laravel Elixir编译资产,而我正在使用handlebars-loader
来编译我的资产。
这是我的gulpfile.js:
const elixir = require('laravel-elixir');
elixir((mix) => {
mix.webpack('app.js', null, null, require('./webpack.config.js'));
});
我需要webpack.config.js,因为我想加载handlebars-loader
这是我的webpack.config.js:
module.exports = {
module: {
loaders: [
{ test: /\.handlebars$/, loader: "handlebars-loader" }
]
},
};
为了让这个问题更简单,我将把所有代码都放在app.js中:
'use strict';
var _token = $('meta[name="csrf-token"]').attr('content');
var renderErrorsTemplate = require('./../templates/errors.handlebars');
var renderTasksTemplate = require('./../templates/task.handlebars');
$('#taskForm').submit(function(event) {
var form = $(this);
var request = $.ajax({
type: form.attr('method'),
url: form.attr('action'),
data: form.serialize()
});
request.done(function(response) {
renderTasks(response);
});
request.fail(function(response) {
renderErrors(response.responseText);
});
event.preventDefault();
});
function renderTasks(response) {
var response = {task: response, token: _token};
$('#tasks').append(renderTasksTemplate(response));
console.log(renderTasksTemplate);
}
function renderErrors(response) {
$('#errors').html(renderErrorsTemplate(JSON.parse(response)))
console.log(renderErrorsTemplate(response));
}
我正在使用require('template.js')
来获取所需的模板,不使用Laravel Elixir,它可以在不使用任何框架的情况下在另一个普通应用程序上运行,但如果我在终端中运行gulp
,它将编译它down,所以稍后当我使用click事件触发函数时,它只返回一些Javascript代码,而不是实际运行该Javascript代码并呈现模板。
这就是它的回报:
var Handlebars = require("/home/akar/Code/laravel-app/node_modules/handlebars/runtime.js"); function __default(obj) { return obj && (obj.__esModule ? obj["default"] : obj); } module.exports = (Handlebars["default"] || Handlebars).template({"1":function(container,depth0,helpers,partials,data) { return "
" + container.escapeExpression(container.lambda((depth0 != null ? depth0["0"] : depth0), depth0)) + "
\n"; },"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) { var stack1; return "
\n
\n" + ((stack1 = helpers.each.call(depth0 != null ? depth0 : {},depth0,{"name":"each","hash":{},"fn":container.program(1, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "") + "
\n
"; },"useData":true});
而不是此模板的proccesed版本:
<div class="alert alert-danger">
<ul>
{{#each this}}
<li>{{ this.[0] }}</li>
{{/each}}
</ul>
答案 0 :(得分:1)
所以最后我将gulpfile.js改为:
const elixir = require('laravel-elixir');
elixir((mix) => {
mix.sass('app.scss')
.webpack('app.js');
});
显然,如果你只是自己运行mix.webpack
,它会自动检查目录中的任何webpack.config.js
,然后从那里读取配置。
我将webpack.config.js文件更改为:
var webpack = require('webpack');
module.exports = {
devtool: 'source-map',
module: {
loaders: [
{ test: /\.js$/, loader: 'buble' },
{ test: /\.handlebars$/, loader: "handlebars-loader" }
]
},
watch: true,
};
我还删除了node_modules
并再次npm install
。
希望这有助于某人,我不知道究竟是什么造成了这个混乱,但我还是修了它。