In the Brackets IDE I'm running PHP functions that need the cURL Library enabled. since the IDE manages in some way to run these files with Live Preview it may have some kind of support over it. How can I install/enable the cURL Library in Live Preview?
问问题
295 次
1 回答
0
实时预览有两种操作模式:
- 使用 Brackets 提供的简单后端运行,它只是静态地提供文件——这是默认设置
- 使用您自己的后端(可以是 PHP、Node、ASP——任何东西)运行
使用您自己的后端是最灵活的,但它会禁用一些实时预览功能。值得注意的是,只有 CSS 文件会在您键入时更新——其他所有内容只会在保存时更新(经典的“实时重新加载”)。查看实时预览文档了解详细信息。
于 2014-07-09T09:22:09.393 回答