在Javascript中获取命名空间不是函数错误

时间:2014-02-13 00:14:04

标签: javascript

我收到此错误

Uncaught TypeError: Object #<Object> has no method 'namespace' bellmedia.videoHub.videoPlayer.js:2
(anonymous function)

这是我在网络控件中的代码片段

 $(document).ready(function() {
             player = BellMedia.videoHub.videoPlayer({
                 destinationCode: globalDestination,
                 platformCode: globalPlatform,

我点击了查看源代码,我确实包含了bellmedia.videoHub.videoPlaye.js文件这就是第2行中命名空间被定义的内容

var BellMedia = BellMedia || {};
BellMedia.namespace('BellMedia.videoHub.videoPlayer');

为什么它仍然抱怨它没有命名空间功能?

1 个答案:

答案 0 :(得分:0)

我解决了这个问题。事实证明,缺少命名空间功能。