问题列表 - 第154899页

打印BizTalk Orchestration的硬拷贝

我想在BizTalk 2010解决方案中打印我的业务流程.在会议期间,硬拷贝更有助于理解,所以我想打印我的编排.

你对这个问题有什么想法吗?

c# printing biztalk biztalk-2010 biztalk-orchestrations

1
推荐指数
1
解决办法
273
查看次数

Node.js将文件发送到客户端

您好,我一直在尝试从node.js向客户端发送文件.我的代码可以工作,但是当客户端转到指定的url(/helloworld/hello.js/test)时,它会传输文件.从谷歌浏览器访问它使文件(.mp3)在播放器中播放.

我的目标是让客户端的浏览器下载文件并询问客户端他想要存储它的位置,而不是在网站上传输它.

http.createServer(function(req, res) {
    switch (req.url) {
        case '/helloworld/hello.js/test':

            var filePath = path.join(__dirname, '/files/output.mp3');
            var stat = fileSystem.statSync(filePath);

            res.writeHead(200, {
                'Content-Type': 'audio/mpeg',
                'Content-Length': stat.size
            });

            var readStream = fileSystem.createReadStream(filePath);
            // We replaced all the event handlers with a simple call to readStream.pipe()
            readStream.on('open', function() {
                // This just pipes the read stream to the response object (which goes to the client)
                readStream.pipe(res);
            });

            readStream.on('error', function(err) {
                res.end(err);
            });
    }
});
Run Code Online (Sandbox Code Playgroud)

html javascript node.js

5
推荐指数
2
解决办法
3万
查看次数

列出设备时出现PyAudio'utf8'错误

使用PyAudio(Portaudio绑定)和ASIO + DirectSound支持时,此代码:

import pyaudio

p = pyaudio.PyAudio()
for i in range(p.get_device_count()):
    print p.get_device_info_by_index(i)
Run Code Online (Sandbox Code Playgroud)

...产生此错误:

UnicodeDecodeError: 'utf8' codec can't decode byte 0xe9 in position 1: invalid continuation byte
Run Code Online (Sandbox Code Playgroud)

我们怎样才能解决这个问题?


问题可能来自"pyaudio.py",第990行,因为utf8解码不成功:

           return {'index' : index,
                    'structVersion' : device_info.structVersion,
                    'name' : device_info.name,
Run Code Online (Sandbox Code Playgroud)

这里的答案音频设备中的特殊字符名称:Pyaudio("不要使用PyAudio")并不令人满意.


追溯

...
{'defaultSampleRate': 44100.0, 'defaultLowOutputLatency': 0.0, 'defaultLowInputLatency': 0.12, 'maxInputChannels': 2L, 'structVersion': 2L, 'hostApi': 1L, 'index': 8, 'defaultHighOutputLatency': 0.0, 'maxOutputChannels': 0L, 'name': u'Microphone interne (Conexant 20672 SmartAudio HD)', 'defaultHighInputLatency': 0.24}
Traceback (most recent call last):
  File "D:\test\test.py", line …
Run Code Online (Sandbox Code Playgroud)

python audio binding portaudio pyaudio

6
推荐指数
2
解决办法
625
查看次数

我们如何在cfquery结果的中间添加一个新行?

我有来自cfquery的查询结果集.我只想在特定的行号后面添加一个新的.但是每次尝试在最后插入行时都会尝试.

有什么办法可以在查询中间插入行吗?

 <cfquery datasource="cse" name="abc">
    select * from grade 
 </cfquery>

 <cfset i = 0>
 <cfloop query="abc">
   <cfset i = i+1>
   <cfif i eq 2>
      <cfset queryAddRow(abc)>
   </cfif>  
 </cfloop>
Run Code Online (Sandbox Code Playgroud)

coldfusion cfquery coldfusion-10

5
推荐指数
1
解决办法
1740
查看次数

有没有办法在Form Control按钮上编辑标题?

是否可以(在工作表更改事件中)更改"表单控件"按钮的标题文本?

理想情况下,我想根据工作簿中的其他数据将变量添加到现有按钮标题中.

excel vba button

4
推荐指数
2
解决办法
3万
查看次数

模式匹配BigInts

此阶乘实现适用于特定大小的数字:

def factorial(n:Int):Int = n match {
    case 0 => 1
    case x => x * factorial(x - 1)
}
Run Code Online (Sandbox Code Playgroud)

我尝试使用BigInt使其适用于任何大小的数字

val zero = BigInt(0)
def factorial(n:BigInt):BigInt = n match {
    case zero => 1
    case x => x * factorial(x - 1)
}
Run Code Online (Sandbox Code Playgroud)

无论n的值如何,对factorial的每次调用都会返回1.我假设这是因为第一种情况总是匹配,并且通过将其更改为证明它是如此

case zero => 22
Run Code Online (Sandbox Code Playgroud)

并验证每次输入都返回了22.

所以我的两个问题是

  1. 为什么第一种情况始终匹配?
  2. 有没有办法让这个函数的BigInt版本工作,同时坚持模式匹配?

scala

3
推荐指数
1
解决办法
667
查看次数

如何在关闭Bootstrap 3模式时重新加载页面

我的目标是在Bootstrap模式关闭时重新加载页面.用户可以通过单击关闭按钮或图标或单击远离模态来关闭模态.

到目前为止,我的代码非常标准.取自:http: //getbootstrap.com/javascript/#modals

<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch
</button>

<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title" id="myModalLabel">My title</h4>
      </div>
      <div class="modal-body">
        My content
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save</button>
      </div>
    </div>
  </div>
</div>
Run Code Online (Sandbox Code Playgroud)

如何在关闭模式后重新加载页面?

更新:哇,来自每个人的惊人快速反应.谢谢

javascript jquery twitter-bootstrap twitter-bootstrap-3

33
推荐指数
3
解决办法
8万
查看次数

在django管理面板中重新排序模型对象

我在django管理面板中有几个配置对象.它们按以下顺序列出

  • 电子邮件配置
  • 一般配置
  • 网络配置

每个对象都可以单独配置,但所有对象都包含在内General config.所以基本上你基本上需要General config,所以我想把它移到顶部.我知道如何在模型中订购字段,但如何重新排序模型?

python django django-models django-admin

12
推荐指数
3
解决办法
3117
查看次数

从ngResource中抑制方法

ngResource 在RESTful(或至少是REST启发的)Api中管理数据访问看起来非常方便...但我想用它管理的一些数据是只读的(至少从我的应用程序的角度来看).

有没有办法阻止ngResource添加保存,删除和删除方法返回的对象?就文档而言,它看起来像是一个唯一的附加API ...

angularjs ngresource

2
推荐指数
1
解决办法
953
查看次数

从SKScene呈现UIViewController

我试图从SKScene呈现一个UIViewController,但应用程序崩溃,这是我的代码:

1-:

 UIViewController *vc = self.view.window.rootViewController;
    helpVC = [[HelpViewController alloc]initWithNibName:@"HelpViewController" bundle:nil];
    [vc presentViewController: helpVC animated: YES completion:nil];
Run Code Online (Sandbox Code Playgroud)

2-

   helpVC = [[HelpViewController alloc]initWithNibName:@"HelpViewController" bundle:nil];
    SKScene *sks = (SKScene*)helpVC;
    [self.view presentScene:sks];
Run Code Online (Sandbox Code Playgroud)

在这两种方式我的应用程序崩溃,谢谢你的帮助

崩溃的原因是:

2014-02-08 16:38:29.119 BrickRacer[13883:70b] -[UIView presentScene:]: unrecognized selector sent to instance 0x10bb7ea50
2014-02-08 16:38:29.122 BrickRacer[13883:70b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIView presentScene:]: unrecognized selector sent to instance 0x10bb7ea50'
*** First throw call stack:
(
    0   CoreFoundation                      0x0000000101fe8795 __exceptionPreprocess + 165
    1   libobjc.A.dylib                     0x0000000101d4b991 objc_exception_throw + 43 …
Run Code Online (Sandbox Code Playgroud)

iphone objective-c ipad ios sprite-kit

0
推荐指数
1
解决办法
3143
查看次数