我遇到了一个使用highcharts-ng的MeanJS应用程序的问题。
图表在本地工作,但是当我使用git将我的项目推送到我的开发服务器时,图表死掉了,我在angularjs中得到了以下错误:
Error: [$injector:modulerr] Failed to instantiate module highcharts-ng due to:
Error: [$injector:nomod] Module 'highcharts-ng' is not available! You either misspelled the module name or forgot t
我正在使用LazZiya快速本地化来本地化我的项目。我有一个问题:我可以对js文件(vuejs)使用LazZiya本地化吗?示例:
const renderVueForm = () => {
console.log('site js');
let html = `<div localize-content>Oh my darling i love you so. You mean everything to me.</div>`;
return html;
};