5

有没有人已经获得 PrimeNG 时间表来运行 webpack angular 2 应用程序?像这棵橡树一样,我不能让它工作,不像他,我仍然不能。

在我的 vendor.ts 中,我加载了所需的库:

require('script!../node_modules/jquery/dist/jquery.js');
require('script!../node_modules/moment/moment.js');
require('script!../node_modules/fullcalendar/dist/fullcalendar.js');

在我的组件中,我从primeng导入时间表

import {Schedule} from 'primeng/components/schedule/schedule';

并添加指令

 directives : [Schedule]

在我看来

<p-schedule [events]="events"></p-schedule>

它让我觉得 this.schedule.fullCalendar 不是一个函数。在 schedule.js 中。

PS:在我尝试插入时间表之前,我插入了一个按钮只是为了检查我的 Prime 是否正确连接,它看起来 100%

如果有人可以帮助我,请在我的智慧尽头

谢谢

4

2 回答 2

0

前几天我在primeng setup page看到他们现在实际上详细介绍了一个starter webpack项目。我认为它很新,我还没有尝试过,但肯定会解决这些问题

于 2016-08-31T11:42:23.283 回答
0

我遇到过同样的问题。然后发现我import 'script!jquery';后来在我的代码中覆盖了 fullcalendar 插件。一旦我删除了第二个导入/要求,它就起作用了。

于 2016-08-30T15:38:56.037 回答