gpt4 book ai didi

javascript - Browserify 不提供要求

转载 作者:行者123 更新时间:2023-11-30 00:31:56 25 4
gpt4 key购买 nike

我正在使用 node.js 和 express 构建一个网络应用。

我想使用 Browserify 使我的本地模块在浏览器中可用。

我的应用程序结构如下:

├── app.js
├── lib
│   ├── controller
│   │   ├── home.js
│   │   └── mixer.js
│   ├── model
│   │   ├── command.js
│   │   ├── control.js
│   │   ├── room.js
│   │   └── user.js
│   └── view
│   ├── error.jade
│   ├── index.jade
│   ├── input.jade
│   ├── layout.jade
│   └── room.jade
├── package.json
└── public
├── images
├── scripts
│   ├── app.js
│   ├── command.js
│   ├── index.js
│   ├── room.js
│   └── user.js
└── styles
└── styles.css

我有一个名为 Control 的本地模块:

module.exports = function() {
var control = {};

control.command = false;
control.create = false;
control.last = 0;
control.room = false;
control.state = 2;
control.time = 0;

return control;
};

我使用 Browserify 通过运行以下命令创建文件 public/scripts/app.js:

browserify -d lib/controller/home.js > public/scripts/app.js

home.js 需要 lib/model/user.js 需要 lib/model/control.js,所以它应该可用在编译脚本中。

在我的 lib/views/layout.jade 文件中,我加载了这个脚本:

doctype html
html
head
title cosette #{name}
link(rel='stylesheet', href='http://cdn.jsdelivr.net/bootstrap/3.3.0/css/bootstrap.min.css')
link(rel='stylesheet', href='http://cdn.jsdelivr.net/bootstrap/3.3.0/css/bootstrap-theme.min.css')
link(rel='stylesheet', href='http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css')
link(rel='stylesheet', href='http://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.6.0/bootstrap-table.min.css')
script(src='http://code.jquery.com/jquery-1.11.1.js')
script(src='http://code.jquery.com/ui/1.11.2/jquery-ui.min.js')
script(src='http://cdn.jsdelivr.net/bootstrap/3.3.0/js/bootstrap.min.js')
script(src='http://cdn.socket.io/socket.io-1.2.0.js')
script(src='http://underscorejs.org/underscore-min.js')
script(src='/scripts/app.js')

link(rel='stylesheet', href='/styles/styles.css')
body
.container-fluid
.page-header
h1
a(href='/')#title cosette
a(href='/room/' + name).small#name= name

block content

然后,在我的 lib/views/index.js 文件中,我从 public/scripts 导入了 index.js 文件:

extends layout

block content
.row
.col-xs-12.col-sm-6.col-md-6
#notifications.list-group

.col-xs-12.col-sm-6.col-md-6
.input-group
input(type='text')#room.form-control
span.input-group-btn
button(type='button')#create.btn.btn-default Create

#rooms.list-group

// Activate page
script(src='/scripts/index.js')

最后,在我的 public/scripts/index.js 文件中,我尝试使用 require 创建一个 Control 实例:

var control = require('./lib/model/control.js');

var socket = io();

var rooms = {};

var update = function() {
$('#rooms').empty();

for (var roomIndex in rooms) {
var room = rooms[roomIndex];

$('#rooms').append('<a href="/room/' + room + '" class="list-group-item">' + room + '</a>');
}

socket.emit('control', control);
};

// Control
$('#create').click(function() { control.create = $('#room').val(); });

// Input
socket.on('rooms', function(message) { rooms = message; });

setInterval(update, 1000);

但是,当我尝试加载此页面时,出现错误:Uncaught ReferenceError: require is not defined

我已经在 Stack Overflow 和其他地方查看过此错误的其他问题,但未能解决该问题。我该怎么办?

我的代码在 Bitbucket 上可见:https://bitbucket.org/davidystephenson/cosette/src

最佳答案

Browserify 创建自包含的包,不会向全局命名空间公开任何内容,除非您使用 --standalone 标志,在这种情况下,库的名称获得全局绑定(bind)。

如果您尝试在 app.js 包之外使用它的 require 函数:您显然不能,这就是现在捆绑的工作方式。

您通常会做的是以 commonjs 风格编写所有脚本(包括下划线/jquery/等要求!),然后创建包。如果您随后希望 require('jquery') 实际使用您页面上已经可用的 jquery,您可以使用类似 browserify-global-shim 的东西来确保同时browserify 正在捆绑,它只是用您告诉它的适当的“this-is-going-to-be-a-working-global-variable”替换它看到的任何 require('jquery') ,例如 jQuery$

关于javascript - Browserify 不提供要求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29134611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com