IExtensionInitializationOptions
Last Update: 1/24/2017
Defined in vss.d.ts
Options for the extension's initialization method
Members
explicitNotifyLoaded: boolean. Optional.
Set to true if the extension willexplicitly call notifyLoadSucceeded or
notifyLoadFailed itself to indicate that the extension is done loading
(stops UI loading indicator in the host). If false (the default) the
extension is considered ready as soon as init is called.
当我在express.js上点击按钮时,如何加载远程或外部链接并传递给div?
答案 0 :(得分:0)
我认为您将前端(视图)与后端(服务器)混淆,您仍需要在视图中执行网络请求以获取远程数据/外部链接。
中间件存在于后端(服务器),你不能从前端调用后端的函数。
答案 1 :(得分:0)
如果您使用模板引擎(如EJS),那么您可以制作一个模板,用任何你想要的东西填充div。
服务器:
http://myurl?ModelSearch[programSelect][0]=2&ModelSearch[programSelect][1]=26&sort=programSelect
.ejs文件:
var link = "http://www.google.com";
response.render('index', link);
将呈现为:
<div> <%= link %> </div>
否则,如果要从服务器端加载具有服务器端功能的内容,则别无选择。