在我的一个项目中,我将逐步交换js文件。我的一个文件(hta.js)包含以下内容:
export function likeUnlikePost(element, $tag, $companyId) {
var elementId = element.target.getAttribute('data-id');
var action = $('#heart-button-' + elementId).attr('action');
if (action == null) {
action = $('#love-heart-button-' + elementId).attr('action');
}
$.post('/posts/ajax/edit/like/' + elementId, {
action: action,
tag: $tag,
companyId: $companyId,
})
.done(function (data) {
var response = data[elementId];
if (response == 'unliked') {
$('#heart-button-span-' + elementId)
.removeClass('htaRed').addClass('htaGrey');
$('#r-heart-button-span-' + elementId)
.removeClass('htaRed').addClass('htaGrey');
$('#r-heart-button-' + elementId).attr('action', 'like');
$('#heart-button-' + elementId).attr('action', 'like');
} else if (response == 'liked') {
$('#heart-button-span-' + elementId)
.removeClass('htaGrey').addClass('htaRed');
$('#r-heart-button-span-' + elementId)
.removeClass('htaGrey').addClass('htaRed');
$('#r-heart-button-' + elementId).attr('action', 'unlike');
$('#heart-button-' + elementId).attr('action', 'unlike');
}
$('#heart-likes-' + elementId)
.html(data['count']);
$('#r-heart-likes-' + elementId)
.html(data['count']);
$('#div-loved-posts')
.html(data['lovedPostsHtml'])
.foundation();
})
.fail(function (data) {
});
}
我想在项目的两个侧面访问此功能。我在webpack.config.js中尝试过这个:
var Encore = require('@symfony/webpack-encore');
Encore
.setOutputPath('web/assets/')
.setPublicPath('/assets')
.setManifestKeyPrefix('../assets')
.addEntry('hta', './app/Resources/js/hta.js')
.addEntry('app', './app/Resources/js/app.js')
.autoProvideVariables({
'hta': 'hta',
'global.hta':'hta',
})
.enableSassLoader()
.enableSourceMaps(!Encore.isProduction())
.cleanupOutputBeforeBuild()
.configureFilenames({
js: 'js/[name].js',
css: 'css/[name].css',
images: 'images/[name].[ext]',
// images: 'images/[path]/[name].[ext]',
fonts: 'fonts/[name].[ext]'
})
;
module.exports = Encore.getWebpackConfig();
但是,当我尝试通过
访问此功能时document.hta.likeUnlikePost($element, '');
我刚得到一个错误:
TypeError: document.hta is undefined
我以为在此示例中尝试过:enter link description here
但是我无法使其正常工作。
答案 0 :(得分:1)
您必须先导入函数,然后才能调用它们。
希望对您有帮助。
答案 1 :(得分:1)
2种可能性: 1 /像您一样使用导出。因此,从webpack中删除文件,然后从“文件路径”中调用import {}。在这里app / Resources / assets / hta.js 2 /使用webpack删除导出函数并立即声明函数,我想您可以直接调用函数
在两种情况下,请不要忽略args。
再见