Giter Site home page Giter Site logo

'jquery.js' is missing. about ng2-signalr HOT 8 CLOSED

hneukermans avatar hneukermans commented on September 10, 2024 1
'jquery.js' is missing.

from ng2-signalr.

Comments (8)

almgwary avatar almgwary commented on September 10, 2024 3

Fixed i need to add this in my component

import 'expose-loader?jQuery!jquery';
import '../node_modules/signalr/jquery.signalR.js';

from ng2-signalr.

almgwary avatar almgwary commented on September 10, 2024 1

@DRNPerera inside you component

from ng2-signalr.

HNeukermans avatar HNeukermans commented on September 10, 2024

Hi @almgwary,
to fix this error you need to include the jquery script.

from ng2-signalr.

almgwary avatar almgwary commented on September 10, 2024

@HNeukermans
why library not include it dependency it self ?
i am using Ionic-2 i tried to include it in my component but it doesn't work
also i included it in index.html it doesn't work too .

from ng2-signalr.

almgwary avatar almgwary commented on September 10, 2024

i have to solve this task urgently .
i have a deliverable this week

from ng2-signalr.

almgwary avatar almgwary commented on September 10, 2024

Ionic version: (check one with "x")
[ ] 1.x
[x ] 2.x
[ ] 3.x

Current behavior:

I need to use this ng2-signalr library and ng2-signalr need to include these 2 JS files .
i followed all steps carefully and add ng2-signalr module with no problem .
when inject library in component i have the issue with missing the previous files

i tried to include them in index.html but it didn't work

  <script  src="https://code.jquery.com/jquery-3.2.1.min.js" ></script>
  <script src="https://ajax.aspnetcdn.com/ajax/signalr/jquery.signalr-2.2.1.min.js"  ></script>

i tried them too inside my component but it didn't work too

import * as $ from 'jquery';
window['jQuery'] = $;
import 'signalr/jquery.signalR.js';

this is urgent i have delevrable i need to use SignalR ASAP

from ng2-signalr.

mfp22 avatar mfp22 commented on September 10, 2024

I just needed to stop getting this error for my test to run. So I used a solution for jest similar to jestjs/jest#708 but with this in test-env.ts instead:

import * as $ from 'jquery';
$.hubConnection = {};
global.$ = global.jQuery = $;

Actually this worked too:
Object.defineProperty(window, 'jQuery', { value: { hubConnection: {} } });

from ng2-signalr.

DRNPerera avatar DRNPerera commented on September 10, 2024

Fixed i need to add this in my component

import 'expose-loader?jQuery!jquery';
import '../node_modules/signalr/jquery.signalR.js';

exactly where to put these imports?

from ng2-signalr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.