+
95
-

微信小程序wxs中无法使用new Date () 怎么办?

微信小程序wxs中无法使用new Date () 怎么办?


网友回复

+
15
-

wxs 中不能直接调用 javascript 中的Date函数,可以使用getDate来替代,代码如下:

	var tools= {
	  getDateTime: function (value) {
	    //不能使用 new Date()
	      var time = getDate(value);
	      var year = time.getFullYear();
	      var month = time.getMonth() + 1;
	      var date = time.getDate();
	      var hour = time.getHou...

点击查看剩余70%

我知道答案,我要回答